2020-04-21 18:23:40 +00:00
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:ui';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:cake_wallet/palette.dart';
|
|
|
|
import 'package:cake_wallet/src/screens/dashboard/wallet_menu.dart';
|
|
|
|
import 'package:cake_wallet/src/stores/wallet/wallet_store.dart';
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
|
|
|
|
class MenuWidget extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
MenuWidgetState createState() => MenuWidgetState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class MenuWidgetState extends State<MenuWidget> {
|
|
|
|
final moneroIcon = Image.asset('assets/images/monero.png');
|
2020-04-22 16:40:16 +00:00
|
|
|
final largeScreen = 731;
|
|
|
|
|
2020-04-21 18:23:40 +00:00
|
|
|
double menuWidth;
|
|
|
|
double screenWidth;
|
2020-04-22 16:40:16 +00:00
|
|
|
double screenHeight;
|
2020-04-21 18:23:40 +00:00
|
|
|
double opacity;
|
|
|
|
bool isDraw;
|
|
|
|
|
2020-04-22 16:40:16 +00:00
|
|
|
double headerHeight;
|
|
|
|
double tileHeight;
|
|
|
|
double fromTopEdge;
|
|
|
|
double fromBottomEdge;
|
|
|
|
|
2020-04-21 18:23:40 +00:00
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
menuWidth = 0;
|
|
|
|
screenWidth = 0;
|
2020-04-22 16:40:16 +00:00
|
|
|
screenHeight = 0;
|
2020-04-21 18:23:40 +00:00
|
|
|
opacity = 0;
|
|
|
|
isDraw = false;
|
2020-04-22 16:40:16 +00:00
|
|
|
|
|
|
|
headerHeight = 120;
|
|
|
|
tileHeight = 75;
|
|
|
|
fromTopEdge = 50;
|
|
|
|
fromBottomEdge = 30;
|
|
|
|
|
2020-04-21 18:23:40 +00:00
|
|
|
super.initState();
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback(afterLayout);
|
|
|
|
}
|
|
|
|
|
|
|
|
void afterLayout(dynamic _) {
|
|
|
|
screenWidth = MediaQuery.of(context).size.width;
|
2020-04-22 16:40:16 +00:00
|
|
|
screenHeight = MediaQuery.of(context).size.height;
|
|
|
|
|
2020-04-21 18:23:40 +00:00
|
|
|
setState(() {
|
|
|
|
menuWidth = screenWidth;
|
|
|
|
opacity = 1;
|
2020-04-22 16:40:16 +00:00
|
|
|
|
|
|
|
if (screenHeight > largeScreen) {
|
|
|
|
final scale = screenHeight / largeScreen;
|
|
|
|
tileHeight *= scale;
|
|
|
|
headerHeight *= scale;
|
|
|
|
fromTopEdge *= scale;
|
|
|
|
fromBottomEdge *= scale;
|
|
|
|
}
|
2020-04-21 18:23:40 +00:00
|
|
|
});
|
2020-04-22 16:40:16 +00:00
|
|
|
|
2020-04-21 18:23:40 +00:00
|
|
|
Timer(Duration(milliseconds: 350), () =>
|
|
|
|
setState(() => isDraw = true)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final walletMenu = WalletMenu(context);
|
|
|
|
final walletStore = Provider.of<WalletStore>(context);
|
|
|
|
final itemCount = walletMenu.items.length;
|
|
|
|
|
|
|
|
return GestureDetector(
|
|
|
|
onTap: () => Navigator.of(context).pop(),
|
|
|
|
child: Container(
|
|
|
|
color: Colors.transparent,
|
|
|
|
child: BackdropFilter(
|
|
|
|
filter: ImageFilter.blur(sigmaX: 3.0, sigmaY: 3.0),
|
|
|
|
child: Container(
|
2020-05-29 15:10:11 +00:00
|
|
|
decoration: BoxDecoration(color: PaletteDark.darkNightBlue.withOpacity(0.75)),
|
2020-04-22 16:40:16 +00:00
|
|
|
child: Row(
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
children: <Widget>[
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(left: 24),
|
|
|
|
child: isDraw
|
|
|
|
? Container(
|
|
|
|
height: 60,
|
|
|
|
width: 4,
|
2020-04-21 18:23:40 +00:00
|
|
|
decoration: BoxDecoration(
|
2020-04-22 16:40:16 +00:00
|
|
|
borderRadius: BorderRadius.all(Radius.circular(2)),
|
2020-05-29 15:10:11 +00:00
|
|
|
color: Theme.of(context).hintColor //
|
2020-04-21 18:23:40 +00:00
|
|
|
),
|
2020-04-22 16:40:16 +00:00
|
|
|
)
|
|
|
|
: Container(
|
|
|
|
height: 60,
|
|
|
|
width: 4,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
SizedBox(width: 12),
|
|
|
|
Expanded(
|
|
|
|
child: GestureDetector(
|
|
|
|
onTap: () => null,
|
|
|
|
child: Container(
|
|
|
|
width: double.infinity,
|
|
|
|
height: double.infinity,
|
|
|
|
alignment: Alignment.centerRight,
|
|
|
|
child: AnimatedContainer(
|
|
|
|
alignment: Alignment.centerLeft,
|
|
|
|
width: menuWidth,
|
|
|
|
height: double.infinity,
|
|
|
|
duration: Duration(milliseconds: 500),
|
|
|
|
curve: Curves.fastOutSlowIn,
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
borderRadius: BorderRadius.only(topLeft: Radius.circular(24), bottomLeft: Radius.circular(24)),
|
2020-05-29 15:10:11 +00:00
|
|
|
color: Theme.of(context).primaryTextTheme.display1.color.withOpacity(opacity)
|
2020-04-22 16:40:16 +00:00
|
|
|
),
|
|
|
|
child: isDraw
|
|
|
|
? ListView.separated(
|
|
|
|
itemBuilder: (_, index) {
|
|
|
|
|
|
|
|
if (index == 0) {
|
|
|
|
return Container(
|
|
|
|
height: headerHeight,
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
left: 24,
|
|
|
|
top: fromTopEdge,
|
|
|
|
right: 24,
|
|
|
|
bottom: fromBottomEdge),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
borderRadius: BorderRadius.only(topLeft: Radius.circular(24)),
|
2020-05-29 15:10:11 +00:00
|
|
|
color: Theme.of(context).primaryTextTheme.display2.color
|
2020-04-22 16:40:16 +00:00
|
|
|
),
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
2020-04-21 18:23:40 +00:00
|
|
|
children: <Widget>[
|
2020-04-22 16:40:16 +00:00
|
|
|
moneroIcon,
|
|
|
|
SizedBox(width: 16),
|
|
|
|
Expanded(
|
|
|
|
child: Container(
|
|
|
|
height: 40,
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: <Widget>[
|
|
|
|
Text(
|
|
|
|
walletStore.name,
|
|
|
|
style: TextStyle(
|
2020-05-29 15:10:11 +00:00
|
|
|
color: Theme.of(context).primaryTextTheme.title.color,
|
2020-04-22 16:40:16 +00:00
|
|
|
decoration: TextDecoration.none,
|
|
|
|
fontFamily: 'Lato',
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.bold
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
walletStore.account.label,
|
|
|
|
style: TextStyle(
|
2020-05-29 15:10:11 +00:00
|
|
|
color: Theme.of(context).primaryTextTheme.caption.color,
|
2020-04-22 16:40:16 +00:00
|
|
|
decoration: TextDecoration.none,
|
|
|
|
fontFamily: 'Lato',
|
|
|
|
fontSize: 12
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
2020-04-21 18:23:40 +00:00
|
|
|
)
|
|
|
|
],
|
2020-04-22 16:40:16 +00:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
index -= 1;
|
|
|
|
final item = walletMenu.items[index];
|
|
|
|
final image = walletMenu.images[index] ?? Offstage();
|
|
|
|
|
|
|
|
return GestureDetector(
|
|
|
|
onTap: () {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
walletMenu.action(index);
|
|
|
|
},
|
|
|
|
child: index == itemCount - 1
|
|
|
|
? Container(
|
|
|
|
height: headerHeight,
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
left: 24,
|
|
|
|
right: 24,
|
|
|
|
top: fromBottomEdge,
|
|
|
|
bottom: fromTopEdge),
|
|
|
|
alignment: Alignment.topLeft,
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
borderRadius: BorderRadius.only(bottomLeft: Radius.circular(24)),
|
2020-05-29 15:10:11 +00:00
|
|
|
color: Theme.of(context).primaryTextTheme.display1.color,
|
2020-04-22 16:40:16 +00:00
|
|
|
),
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
children: <Widget>[
|
|
|
|
image,
|
|
|
|
SizedBox(width: 16),
|
|
|
|
Expanded(
|
|
|
|
child: Text(
|
|
|
|
item,
|
|
|
|
style: TextStyle(
|
|
|
|
decoration: TextDecoration.none,
|
2020-05-29 15:10:11 +00:00
|
|
|
color: Theme.of(context).primaryTextTheme.title.color,
|
2020-04-22 16:40:16 +00:00
|
|
|
fontFamily: 'Lato',
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.bold
|
|
|
|
),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
2020-04-21 18:23:40 +00:00
|
|
|
)
|
2020-04-22 16:40:16 +00:00
|
|
|
: Container(
|
|
|
|
height: tileHeight,
|
|
|
|
padding: EdgeInsets.only(left: 24, right: 24),
|
2020-05-29 15:10:11 +00:00
|
|
|
color: Theme.of(context).primaryTextTheme.display1.color,
|
2020-04-22 16:40:16 +00:00
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
children: <Widget>[
|
|
|
|
image,
|
|
|
|
SizedBox(width: 16),
|
|
|
|
Expanded(
|
|
|
|
child: Text(
|
|
|
|
item,
|
|
|
|
style: TextStyle(
|
|
|
|
decoration: TextDecoration.none,
|
2020-05-29 15:10:11 +00:00
|
|
|
color: Theme.of(context).primaryTextTheme.title.color,
|
2020-04-22 16:40:16 +00:00
|
|
|
fontFamily: 'Lato',
|
|
|
|
fontSize: 20,
|
|
|
|
fontWeight: FontWeight.bold
|
|
|
|
),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
separatorBuilder: (_, index) =>
|
2020-05-29 15:10:11 +00:00
|
|
|
Container(
|
2020-04-22 16:40:16 +00:00
|
|
|
height: 1,
|
2020-05-29 15:10:11 +00:00
|
|
|
color: Theme.of(context).dividerColor,
|
2020-04-22 16:40:16 +00:00
|
|
|
),
|
|
|
|
itemCount: itemCount + 1)
|
|
|
|
: Offstage()
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
],
|
|
|
|
)
|
2020-04-21 18:23:40 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|