mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-03 09:29:48 +00:00
Update hamburger menu
This commit is contained in:
parent
859d1d540c
commit
a5b0856eee
2 changed files with 63 additions and 45 deletions
|
@ -141,6 +141,7 @@ class MenuWidgetState extends State<MenuWidget> {
|
|||
return Container(
|
||||
height: headerHeight,
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.only(bottomLeft: Radius.circular(24)),
|
||||
gradient: LinearGradient(colors: [
|
||||
Theme.of(context).extension<CakeMenuTheme>()!.headerFirstGradientColor,
|
||||
Theme.of(context).extension<CakeMenuTheme>()!.headerSecondGradientColor,
|
||||
|
@ -207,7 +208,7 @@ class MenuWidgetState extends State<MenuWidget> {
|
|||
);
|
||||
},
|
||||
separatorBuilder: (_, index) => Container(
|
||||
height: 1,
|
||||
height: 0,
|
||||
color: Theme.of(context).extension<CakeMenuTheme>()!.dividerColor,
|
||||
),
|
||||
itemCount: itemCount + 1,
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
import 'package:cake_wallet/palette.dart';
|
||||
import 'package:cake_wallet/themes/extensions/menu_theme.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:cake_wallet/themes/extensions/sync_indicator_theme.dart';
|
||||
import 'package:cake_wallet/themes/extensions/dashboard_page_theme.dart';
|
||||
import 'package:cake_wallet/themes/extensions/balance_page_theme.dart';
|
||||
import 'package:cake_wallet/themes/extensions/option_tile_theme.dart';
|
||||
|
||||
class SettingActionButton extends StatelessWidget {
|
||||
final bool isLastTile;
|
||||
|
@ -29,23 +33,35 @@ class SettingActionButton extends StatelessWidget {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final isLightMode = Theme.of(context).extension<OptionTileTheme>()?.useDarkImage ?? false;
|
||||
Color? color = isSelected
|
||||
? Theme.of(context).extension<CakeMenuTheme>()!.settingTitleColor
|
||||
: selectionActive
|
||||
? Palette.darkBlue
|
||||
: Theme.of(context).extension<CakeMenuTheme>()!.settingTitleColor;
|
||||
return InkWell(
|
||||
onTap: onTap,
|
||||
hoverColor: Colors.transparent,
|
||||
return Container(
|
||||
//padding: EdgeInsets.only(top: 5, left: 15, bottom: 5),
|
||||
margin: EdgeInsets.only(top: 10, left: 20, bottom: 0),
|
||||
child: TextButton(
|
||||
style: ButtonStyle(
|
||||
backgroundColor: MaterialStateProperty.all(isLightMode ? Theme.of(context).cardColor : Colors.black12),
|
||||
shape: MaterialStateProperty.all(
|
||||
RoundedRectangleBorder(
|
||||
side: BorderSide(
|
||||
//color: Colors.black12,
|
||||
width: 100
|
||||
),
|
||||
borderRadius: BorderRadius.only(topLeft: Radius.circular(20), bottomLeft: Radius.circular(20),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
onPressed: onTap,
|
||||
//hoverColor: Colors.transparent,
|
||||
child: Container(
|
||||
height: tileHeight,
|
||||
padding: isLastTile
|
||||
? EdgeInsets.only(
|
||||
left: 24,
|
||||
right: 24,
|
||||
top: fromBottomEdge,
|
||||
)
|
||||
: EdgeInsets.only(left: 24, right: 24),
|
||||
width: double.infinity,
|
||||
padding: EdgeInsets.only(top: 12, left: 20, bottom: 12, right: 15),
|
||||
//margin: EdgeInsets.only(top: 5, left: 15, bottom: 5),
|
||||
alignment: isLastTile ? Alignment.topLeft : null,
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
|
@ -70,15 +86,16 @@ class SettingActionButton extends StatelessWidget {
|
|||
),
|
||||
),
|
||||
),
|
||||
if (isArrowVisible)
|
||||
if(isArrowVisible)
|
||||
Icon(
|
||||
Icons.arrow_forward_ios,
|
||||
color: color,
|
||||
color: Colors.grey,
|
||||
size: 16,
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue