diff options
author | Felipe Erias <felipeerias@igalia.com> | 2021-11-12 15:36:12 +0900 |
---|---|---|
committer | Felipe Erias <felipeerias@igalia.com> | 2021-11-12 15:36:12 +0900 |
commit | 8c32227596b5de15417e667cca84178a157543a1 (patch) | |
tree | b1db2feda775b1aee41bebc306481d45a5bf70eb /lib/page_home.dart | |
parent | 3cdd54458bfc6ba0066cb2a82c4a91bd4baf9b82 (diff) |
Visual appearance of main navigation
Diffstat (limited to 'lib/page_home.dart')
-rw-r--r-- | lib/page_home.dart | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/page_home.dart b/lib/page_home.dart index 1084a4f..1fbda1f 100644 --- a/lib/page_home.dart +++ b/lib/page_home.dart @@ -11,7 +11,7 @@ class HomePage extends StatelessWidget { final double spacing = MediaQuery.of(context).size.width / 32; final double runSpacing = spacing / 2; return Container( - color: Colors.white, + color: Colors.lightBlue.shade50, constraints: BoxConstraints.expand(), alignment: Alignment.center, child: Wrap( @@ -35,15 +35,15 @@ class HomePage extends StatelessWidget { style: OutlinedButton.styleFrom( shape: CircleBorder(), padding: EdgeInsets.all(padding), - primary: Colors.blue, - side: BorderSide(width: border, color: Colors.lightBlue.shade50) + primary: Colors.lightBlue.shade400, + side: BorderSide(width: border, color: Colors.lightBlue.shade400) ), onPressed: () { onSetNavigationIndex(tabPosition); }, child: Icon( icon, - color: Colors.blue, + color: Colors.lightBlue.shade800, size: size / 2, ), ), |