Skip to content

Commit

Permalink
Colour changes
Browse files Browse the repository at this point in the history
  • Loading branch information
oltimaloku committed Feb 3, 2024
1 parent 5ecc1de commit 48d72f5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion client/lib/features/geo_sphere/views/geo_spheres_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class GeoSphereView extends StatelessWidget {
//final geoSphereViewModel =
// Provider.of<GeoSphereViewModel>(context, listen: false);
return Scaffold(
backgroundColor: GlobalVariables.backgroundColor,
backgroundColor: const Color.fromARGB(255, 18, 18, 26),
body: SafeArea(
child: Column(
children: [
Expand Down
17 changes: 10 additions & 7 deletions client/lib/home_router.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ class _HomeRouterState extends State<HomeRouter> {
extendBody: true,
floatingActionButtonLocation: FloatingActionButtonLocation.centerDocked,
floatingActionButton: FloatingActionButton(
foregroundColor: const Color.fromARGB(255, 3, 179, 0),
foregroundColor:
GlobalVariables.secondaryColor, //Color.fromARGB(255, 3, 179, 0),
backgroundColor: const Color.fromARGB(255, 10, 10, 10),
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(50.0)),
Expand Down Expand Up @@ -69,12 +70,14 @@ class _HomeRouterState extends State<HomeRouter> {
height: 64,
color: const Color.fromARGB(255, 10, 10, 10),
shape: const CircularNotchedRectangle(),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
buildBottomNavItem(Icons.map_outlined, 'Map', 0),
buildBottomNavItem(Icons.language, 'Spaces', 1),
],
child: Container(
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
buildBottomNavItem(Icons.map_outlined, 'Map', 0),
buildBottomNavItem(Icons.language, 'Spaces', 1),
],
),
),
),
body: screens[_page],
Expand Down

0 comments on commit 48d72f5

Please sign in to comment.