Skip to content

Commit

Permalink
patch: fixes bottom nav background color
Browse files Browse the repository at this point in the history
  • Loading branch information
am-casper committed Aug 4, 2024
1 parent 2e54c54 commit 6828fcf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/data/constants/env_config.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
class EnvironmentConfig {
static const String BASE_URL = String.fromEnvironment(
'BASE_URL',
defaultValue: 'https://appetizer.onrender.com',
//
defaultValue: 'https://71ca-103-37-201-175.ngrok-free.app',
);

static const String OAUTH_CLIENT_ID = String.fromEnvironment(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ class BottomNavigatorScreen extends StatelessWidget {
body: child,
bottomNavigationBar: BottomNavigationBar(
key: UniqueKey(),
backgroundColor: Colors.white,
currentIndex: tabRouter.activeIndex,
onTap: (index) {
tabRouter.setActiveIndex(index);
Expand Down

0 comments on commit 6828fcf

Please sign in to comment.