Skip to content

Commit

Permalink
📝 chore: add firebase configuration files and update README.md
Browse files Browse the repository at this point in the history
✨ feat(main.dart): update app title to 'Storybook App Flutter Demo' for better clarity and branding
  • Loading branch information
iqfareez committed Apr 30, 2023
1 parent 23e1e25 commit 6f64bf9
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"projects": {
"default": "jam-8-apps"
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ app.*.map.json
/android/app/debug
/android/app/profile
/android/app/release
.firebase/hosting.YnVpbGRcd2Vi.cache
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ In this module, we will learn about:
- GestureDetector (make a widget clickable)
- etc.

> **Note** Best view in mobile.
> **Note** When building for **web**, pass along the args `--web-renderer html` so that network image can load.
---

## Getting Started

This project is a starting point for a Flutter application.
Expand Down
13 changes: 13 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"hosting": {
"public": "build/web",
"site": "storybook-demo",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
title: 'Storybook App Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.pink,
),
Expand Down

0 comments on commit 6f64bf9

Please sign in to comment.