Play now Human Life Game on Web. You can also create original Life.
- https://flutter.dev/docs/get-started/web
cp config/.env.sample config/.env && vim config/.env
firebase serve --only hosting
with Firebase Emulator
# Server Side
firebase emulators:start --only firestore,functions
then, run by main_emulator
config. (Note: Auth Trigger is not supported)
flutter packages pub run build_runner build
- add English text to
i18n/extensions/*.dart
- create arb files
./lib/i18n/create_arb.sh
- copy
i18n/intl_messages.arb
toi18n/intl_en.arb
- add Japanese text to
i18n/intl_ja.arb
- create dart classes
./lib/i18n/create_message_class.sh
- you can call
I18n.of(context).hoge
FLUTTER_HOME=~/development/flutter/ \
&& FLUTTER_ROOT=$FLUTTER_HOME dartdoc --output docs/ \
&& open docs/index.html