Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 605 Bytes

README.md

File metadata and controls

46 lines (32 loc) · 605 Bytes

flutter-template

Flutter & Firebase project template

Getting started

$ git clone https://github.com/KKimj/flutter-template.git

Tips

Build flutter project, chrome

$ flutter run -d chrome

Test .dart /test

$ flutter test --machine test/widget_test.dart
# or just
$ flutter test

Release Build, chrome

$ flutter run -d chrome --release
# check /build/web/

Firebase hosting

$ firebase init

# Set /build/web for deploy directory to hosting

$ firebase deploy --only hosting
# or just
$ firebase deploy