mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
WIP coin dropdown
This commit is contained in:
parent
134087bfc4
commit
0503999fa7
1 changed files with 172 additions and 73 deletions
|
@ -1,8 +1,10 @@
|
|||
import 'package:dropdown_button2/dropdown_button2.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter/services.dart';
|
||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||
import 'package:flutter_svg/svg.dart';
|
||||
import 'package:stackwallet/pages/address_book_views/subviews/coin_select_sheet.dart';
|
||||
import 'package:stackwallet/providers/providers.dart';
|
||||
// import 'package:stackwallet/providers/global/should_show_lockscreen_on_resume_state_provider.dart';
|
||||
import 'package:stackwallet/providers/ui/address_book_providers/address_entry_data_provider.dart';
|
||||
import 'package:stackwallet/utilities/address_utils.dart';
|
||||
|
@ -47,6 +49,8 @@ class _NewContactAddressEntryFormState
|
|||
late final FocusNode addressLabelFocusNode;
|
||||
late final FocusNode addressFocusNode;
|
||||
|
||||
List<Coin> coins = [];
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
addressLabelController = TextEditingController()
|
||||
|
@ -55,6 +59,7 @@ class _NewContactAddressEntryFormState
|
|||
..text = ref.read(addressEntryDataProvider(widget.id)).address ?? "";
|
||||
addressLabelFocusNode = FocusNode();
|
||||
addressFocusNode = FocusNode();
|
||||
coins = [...Coin.values];
|
||||
super.initState();
|
||||
}
|
||||
|
||||
|
@ -70,86 +75,179 @@ class _NewContactAddressEntryFormState
|
|||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final isDesktop = Util.isDesktop;
|
||||
bool showTestNet = ref.watch(
|
||||
prefsChangeNotifierProvider.select((value) => value.showTestNetCoins),
|
||||
);
|
||||
if (isDesktop) {
|
||||
coins = [...Coin.values];
|
||||
|
||||
coins.remove(Coin.firoTestNet);
|
||||
if (showTestNet) {
|
||||
coins = coins.sublist(0, coins.length - kTestNetCoinCount);
|
||||
}
|
||||
}
|
||||
|
||||
return Column(
|
||||
children: [
|
||||
TextField(
|
||||
autocorrect: Util.isDesktop ? false : true,
|
||||
enableSuggestions: Util.isDesktop ? false : true,
|
||||
readOnly: true,
|
||||
style: STextStyles.field(context),
|
||||
decoration: InputDecoration(
|
||||
hintText: "Select cryptocurrency",
|
||||
hintStyle: STextStyles.fieldLabel(context),
|
||||
prefixIcon: Center(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 12),
|
||||
child: RawMaterialButton(
|
||||
splashColor:
|
||||
Theme.of(context).extension<StackColors>()!.highlight,
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(
|
||||
Constants.size.circularBorderRadius,
|
||||
if (isDesktop)
|
||||
DropdownButtonHideUnderline(
|
||||
child: DropdownButton2<Coin>(
|
||||
hint: Text(
|
||||
"Select cryptocurrency",
|
||||
style: STextStyles.fieldLabel(context),
|
||||
),
|
||||
offset: const Offset(0, -10),
|
||||
isExpanded: true,
|
||||
dropdownElevation: 0,
|
||||
value: ref.watch(addressEntryDataProvider(widget.id)
|
||||
.select((value) => value.coin)),
|
||||
onChanged: (value) {
|
||||
if (value is Coin) {
|
||||
ref.read(addressEntryDataProvider(widget.id)).coin = value;
|
||||
}
|
||||
},
|
||||
icon: SvgPicture.asset(
|
||||
Assets.svg.chevronDown,
|
||||
width: 10,
|
||||
height: 5,
|
||||
color: Theme.of(context).extension<StackColors>()!.textDark3,
|
||||
),
|
||||
buttonPadding: const EdgeInsets.symmetric(
|
||||
horizontal: 16,
|
||||
vertical: 4,
|
||||
),
|
||||
buttonDecoration: BoxDecoration(
|
||||
color: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.textFieldDefaultBG,
|
||||
borderRadius: BorderRadius.circular(
|
||||
Constants.size.circularBorderRadius,
|
||||
),
|
||||
),
|
||||
dropdownDecoration: BoxDecoration(
|
||||
color: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.textFieldDefaultBG,
|
||||
borderRadius: BorderRadius.circular(
|
||||
Constants.size.circularBorderRadius,
|
||||
),
|
||||
),
|
||||
items: [
|
||||
...coins.map(
|
||||
(coin) => DropdownMenuItem<Coin>(
|
||||
value: coin,
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(vertical: 4),
|
||||
child: Row(
|
||||
children: [
|
||||
SvgPicture.asset(
|
||||
Assets.svg.iconFor(coin: coin),
|
||||
height: 24,
|
||||
width: 24,
|
||||
),
|
||||
const SizedBox(
|
||||
width: 12,
|
||||
),
|
||||
Text(
|
||||
coin.prettyName,
|
||||
style:
|
||||
STextStyles.desktopTextExtraExtraSmall(context)
|
||||
.copyWith(
|
||||
color: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.textDark,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
onPressed: () {
|
||||
showModalBottomSheet<dynamic>(
|
||||
backgroundColor: Colors.transparent,
|
||||
context: context,
|
||||
builder: (_) => const CoinSelectSheet(),
|
||||
).then((value) {
|
||||
if (value is Coin) {
|
||||
ref.read(addressEntryDataProvider(widget.id)).coin =
|
||||
value;
|
||||
}
|
||||
});
|
||||
},
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
ref.watch(addressEntryDataProvider(widget.id)
|
||||
.select((value) => value.coin)) ==
|
||||
null
|
||||
? Text(
|
||||
"Select cryptocurrency",
|
||||
style: STextStyles.fieldLabel(context),
|
||||
)
|
||||
: Row(
|
||||
children: [
|
||||
SvgPicture.asset(
|
||||
Assets.svg.iconFor(
|
||||
coin: ref.watch(
|
||||
addressEntryDataProvider(widget.id)
|
||||
.select((value) => value.coin))!),
|
||||
height: 20,
|
||||
width: 20,
|
||||
),
|
||||
const SizedBox(
|
||||
width: 12,
|
||||
),
|
||||
Text(
|
||||
ref
|
||||
.watch(addressEntryDataProvider(widget.id)
|
||||
.select((value) => value.coin))!
|
||||
.prettyName,
|
||||
style: STextStyles.itemSubtitle12(context),
|
||||
),
|
||||
],
|
||||
),
|
||||
SvgPicture.asset(
|
||||
Assets.svg.chevronDown,
|
||||
width: 8,
|
||||
height: 4,
|
||||
color: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.textSubtitle2,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
if (!isDesktop)
|
||||
TextField(
|
||||
autocorrect: Util.isDesktop ? false : true,
|
||||
enableSuggestions: Util.isDesktop ? false : true,
|
||||
readOnly: true,
|
||||
style: STextStyles.field(context),
|
||||
decoration: InputDecoration(
|
||||
hintText: "Select cryptocurrency",
|
||||
hintStyle: STextStyles.fieldLabel(context),
|
||||
prefixIcon: Center(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 12),
|
||||
child: RawMaterialButton(
|
||||
splashColor:
|
||||
Theme.of(context).extension<StackColors>()!.highlight,
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(
|
||||
Constants.size.circularBorderRadius,
|
||||
),
|
||||
],
|
||||
),
|
||||
onPressed: () {
|
||||
showModalBottomSheet<dynamic>(
|
||||
backgroundColor: Colors.transparent,
|
||||
context: context,
|
||||
builder: (_) => const CoinSelectSheet(),
|
||||
).then((value) {
|
||||
if (value is Coin) {
|
||||
ref.read(addressEntryDataProvider(widget.id)).coin =
|
||||
value;
|
||||
}
|
||||
});
|
||||
},
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
ref.watch(addressEntryDataProvider(widget.id)
|
||||
.select((value) => value.coin)) ==
|
||||
null
|
||||
? Text(
|
||||
"Select cryptocurrency",
|
||||
style: STextStyles.fieldLabel(context),
|
||||
)
|
||||
: Row(
|
||||
children: [
|
||||
SvgPicture.asset(
|
||||
Assets.svg.iconFor(
|
||||
coin: ref.watch(
|
||||
addressEntryDataProvider(widget.id)
|
||||
.select(
|
||||
(value) => value.coin))!),
|
||||
height: 20,
|
||||
width: 20,
|
||||
),
|
||||
const SizedBox(
|
||||
width: 12,
|
||||
),
|
||||
Text(
|
||||
ref
|
||||
.watch(
|
||||
addressEntryDataProvider(widget.id)
|
||||
.select((value) => value.coin))!
|
||||
.prettyName,
|
||||
style: STextStyles.itemSubtitle12(context),
|
||||
),
|
||||
],
|
||||
),
|
||||
if (!isDesktop)
|
||||
SvgPicture.asset(
|
||||
Assets.svg.chevronDown,
|
||||
width: 8,
|
||||
height: 4,
|
||||
color: Theme.of(context)
|
||||
.extension<StackColors>()!
|
||||
.textSubtitle2,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
const SizedBox(
|
||||
height: 8,
|
||||
),
|
||||
|
@ -253,9 +351,10 @@ class _NewContactAddressEntryFormState
|
|||
},
|
||||
child: const ClipboardIcon(),
|
||||
),
|
||||
if (!Util.isDesktop && ref.watch(addressEntryDataProvider(widget.id)
|
||||
.select((value) => value.address)) ==
|
||||
null)
|
||||
if (!Util.isDesktop &&
|
||||
ref.watch(addressEntryDataProvider(widget.id)
|
||||
.select((value) => value.address)) ==
|
||||
null)
|
||||
TextFieldIconButton(
|
||||
key: const Key("addAddressBookEntryScanQrButtonKey"),
|
||||
onTap: () async {
|
||||
|
|
Loading…
Reference in a new issue