Compare commits
12 Commits
6af1df5fbc
...
e464ddb466
| Author | SHA1 | Date | |
|---|---|---|---|
| e464ddb466 | |||
| c3deaa3974 | |||
| fd13fe6e90 | |||
| 5062196463 | |||
| df3215ef76 | |||
| 28ed22ce73 | |||
| b668f6b9ae | |||
| 63d9ed400d | |||
| d809d80506 | |||
| ec9e34305a | |||
| 36aa4722a3 | |||
|
|
1536e2b2af |
@@ -70,12 +70,14 @@ class _CustomNavigationBarState extends State<CustomNavigationBar>
|
|||||||
backgroundColor: CustomTheme.backgroundColor,
|
backgroundColor: CustomTheme.backgroundColor,
|
||||||
body: tabs[currentIndex],
|
body: tabs[currentIndex],
|
||||||
extendBody: true,
|
extendBody: true,
|
||||||
bottomNavigationBar: Padding(
|
bottomNavigationBar: SafeArea(
|
||||||
padding: const EdgeInsets.only(left: 12.0, right: 12.0, bottom: 8.0),
|
minimum: const EdgeInsets.only(bottom: 30),
|
||||||
child: Material(
|
child: Container(
|
||||||
elevation: 10,
|
margin: const EdgeInsets.symmetric(horizontal: 12.0, vertical: 10),
|
||||||
borderRadius: BorderRadius.circular(24),
|
decoration: BoxDecoration(
|
||||||
color: CustomTheme.primaryColor,
|
borderRadius: BorderRadius.circular(24),
|
||||||
|
color: CustomTheme.primaryColor,
|
||||||
|
),
|
||||||
child: ClipRRect(
|
child: ClipRRect(
|
||||||
borderRadius: BorderRadius.circular(24),
|
borderRadius: BorderRadius.circular(24),
|
||||||
child: SizedBox(
|
child: SizedBox(
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ class _GroupsViewState extends State<GroupsView> {
|
|||||||
),
|
),
|
||||||
|
|
||||||
Positioned(
|
Positioned(
|
||||||
bottom: 80,
|
bottom: MediaQuery.paddingOf(context).bottom,
|
||||||
child: CustomWidthButton(
|
child: CustomWidthButton(
|
||||||
text: 'Create Group',
|
text: 'Create Group',
|
||||||
sizeRelativeToWidth: 0.90,
|
sizeRelativeToWidth: 0.90,
|
||||||
|
|||||||
Reference in New Issue
Block a user