2020-01-04 19:31:52 +00:00
|
|
|
import 'dart:ui';
|
|
|
|
import 'package:flutter/material.dart';
|
2020-05-21 18:01:12 +00:00
|
|
|
import 'package:cake_wallet/palette.dart';
|
2020-01-04 19:31:52 +00:00
|
|
|
|
|
|
|
class Picker<Item extends Object> extends StatelessWidget {
|
2020-05-21 18:01:12 +00:00
|
|
|
Picker({
|
|
|
|
@required this.selectedAtIndex,
|
|
|
|
@required this.items,
|
|
|
|
this.images,
|
|
|
|
@required this.title,
|
|
|
|
@required this.onItemSelected,
|
|
|
|
this.mainAxisAlignment = MainAxisAlignment.start
|
|
|
|
});
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2020-01-08 12:26:34 +00:00
|
|
|
final int selectedAtIndex;
|
|
|
|
final List<Item> items;
|
2020-05-21 18:01:12 +00:00
|
|
|
final List<Image> images;
|
2020-01-08 12:26:34 +00:00
|
|
|
final String title;
|
|
|
|
final Function(Item) onItemSelected;
|
2020-05-21 18:01:12 +00:00
|
|
|
final MainAxisAlignment mainAxisAlignment;
|
2020-01-08 12:26:34 +00:00
|
|
|
|
2020-01-04 19:31:52 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
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-21 18:01:12 +00:00
|
|
|
decoration: BoxDecoration(color: PaletteDark.historyPanel.withOpacity(0.75)),
|
|
|
|
child: Center(
|
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: <Widget>[
|
|
|
|
Container(
|
|
|
|
padding: EdgeInsets.only(left: 24, right: 24),
|
|
|
|
child: Text(
|
|
|
|
title,
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 18,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
decoration: TextDecoration.none,
|
|
|
|
color: Colors.white
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(left: 24, right: 24, top: 24),
|
|
|
|
child: GestureDetector(
|
|
|
|
onTap: () => null,
|
|
|
|
child: ClipRRect(
|
|
|
|
borderRadius: BorderRadius.all(Radius.circular(14)),
|
|
|
|
child: Container(
|
|
|
|
height: 233,
|
|
|
|
color: PaletteDark.menuList,
|
|
|
|
child: ListView.separated(
|
|
|
|
separatorBuilder: (context, index) => Divider(
|
|
|
|
color: PaletteDark.mainBackgroundColor,
|
|
|
|
height: 1,
|
2020-01-04 19:31:52 +00:00
|
|
|
),
|
2020-05-21 18:01:12 +00:00
|
|
|
itemCount: items == null ? 0 : items.length,
|
|
|
|
itemBuilder: (context, index) {
|
|
|
|
final item = items[index];
|
|
|
|
final image = images != null? images[index] : null;
|
|
|
|
final isItemSelected = index == selectedAtIndex;
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2020-05-21 18:01:12 +00:00
|
|
|
final color = isItemSelected
|
|
|
|
? PaletteDark.menuHeader
|
|
|
|
: Colors.transparent;
|
|
|
|
final textColor = isItemSelected
|
|
|
|
? Colors.blue
|
|
|
|
: Colors.white;
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2020-05-21 18:01:12 +00:00
|
|
|
return GestureDetector(
|
|
|
|
onTap: () {
|
|
|
|
if (onItemSelected == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
onItemSelected(item);
|
|
|
|
},
|
|
|
|
child: Container(
|
|
|
|
height: 77,
|
|
|
|
padding: EdgeInsets.only(left: 24, right: 24),
|
|
|
|
color: color,
|
|
|
|
child: Row(
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
mainAxisAlignment: mainAxisAlignment,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
children: <Widget>[
|
|
|
|
image != null
|
|
|
|
? image
|
|
|
|
: Offstage(),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(
|
|
|
|
left: image != null ? 12 : 0
|
|
|
|
),
|
|
|
|
child: Text(
|
|
|
|
item.toString(),
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 18,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
color: textColor,
|
|
|
|
decoration: TextDecoration.none,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
)
|
2020-01-04 19:31:52 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|