NKLCB Flutter는 테크 블로그 크롤링 서비스인 "네카라쿠배"의 모바일 애플리케이션입니다.
PDF: nklkb.pdf
- Dart
- Flutter
for more information, see pubspec.yaml
lib/: 주요 소스 코드 디렉토리constants/: 상수models/: 데이터 모델pages/: 애플리케이션 페이지utils/: 유틸리티 함수views/: 재사용 가능한 UI 위젯
assets/: 이미지, 폰트 등 리소스 파일
- Clone the repo
git clone https://github.com/kimday0326/nklcb-flutter.git
- Move to the project directory
cd nklcb-flutter - Install dependencies
flutter pub get
- For using url_launcher library, add the following code
- Android:
android/app/src/main/AndroidManifest.xml
<queries> <intent> <action android:name="android.support.customtabs.action.CustomTabsService" /> </intent> </queries>
- iOS:
ios/Runner/Info.plist
<key>LSApplicationQueriesSchemes</key> <array> <string>https</string> </array>
- Android:
- Run the project
flutter run
This project is licensed under the MIT License - see the LICENSE file for details.