Skip to content

Commit

Permalink
more updates
Browse files Browse the repository at this point in the history
  • Loading branch information
trey-rosius committed Apr 14, 2021
1 parent 8c18e1b commit 1221696
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/config.dart
@@ -1,4 +1,5 @@
class Config{
//REPLACE WITH YOUR OWN KEY
static final String API_KEY="XXXXXXXXXXXXXXXXXXXXXXXXXXXX";
static final String API_KEY="XXXXXXXXXXXXXXXXXXXXXXXXXXXX";

}
6 changes: 5 additions & 1 deletion lib/home_screen.dart
Expand Up @@ -206,7 +206,11 @@ class _HomeScreenState extends State<HomeScreen> {
}

// By default, show a loading spinner.
return CircularProgressIndicator();
return Container(
height: 40,
width: 40,

child: Center(child: CircularProgressIndicator()));
},
))
],
Expand Down

0 comments on commit 1221696

Please sign in to comment.