flutter_basic_kit_library 0.0.5
flutter_basic_kit_library: ^0.0.5 copied to clipboard
A collection of basic Flutter UI widgets and app-scaffolding utilities used across cleanwash projects.
0.0.5 #
(요약: basic_kit 단독 사용자를 위한 init 명령 추가 — pubspec.yaml에 번들 패키지 이름을 실제로 적어줌)
- Added an
initcommand (dart run flutter_basic_kit_library:init, orbasic_kit initafterdart pub global activate), mirroring the same dependency-sync mechanism riverpod_kit/provider_kit/bloc_kit already use internally. Previously, adding justflutter_basic_kit_libraryand runningflutter pub getmade every bundled package importable but leftpubspec.yamlshowing only the one opaque line — this command writes each bundled package in as an explicit, nameddependencies/dev_dependenciesentry instead.
0.0.4 #
- Moved
flutter_native_splashfromdependenciestodev_dependencies— it's a build-time code generator (dart run flutter_native_splash:create), not something consumer apps import at runtime. (요약: flutter_native_splash를 dependencies에서 dev_dependencies로 이동 — 런타임에 import하는 게 아니라 빌드 시점 코드 생성 도구이기 때문)
0.0.3 #
- Added
intl(date/number formatting, i18n) andflutter_secure_storage(secure token storage) to the bundled dependency stack.
0.0.2 #
- Upgraded direct dependencies to their latest stable majors:
freezed_annotation(3.x),get_it(9.x),go_router(17.x),google_fonts(8.x),injectable(3.x); matchedfreezed(3.2.5, stable) andinjectable_generatoraccordingly. - Rewrote
README.mdin English (pub.dev flagged the previous Korean-heavy README for too many non-ASCII characters). - Added dartdoc for the library directive and an explicit documented
Calculator()constructor. - Added
example/main.dart.
0.0.1 #
- 초기 릴리스: UI(curved_navigation_bar, google_fonts, flutter_native_splash), 앱 구조(go_router, provider, get_it, injectable), 네트워킹/모델(dio, retrofit, freezed_annotation, json_annotation) 패키지 번들 구성.