mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 20:09:23 +00:00
clean up hidden settings
This commit is contained in:
parent
ca95612d69
commit
9237e99f0c
1 changed files with 71 additions and 71 deletions
|
@ -167,77 +167,77 @@ class HiddenSettings extends StatelessWidget {
|
||||||
// ),
|
// ),
|
||||||
// );
|
// );
|
||||||
// }),
|
// }),
|
||||||
const SizedBox(
|
// const SizedBox(
|
||||||
height: 12,
|
// height: 12,
|
||||||
),
|
// ),
|
||||||
Consumer(builder: (_, ref, __) {
|
// Consumer(builder: (_, ref, __) {
|
||||||
return GestureDetector(
|
// return GestureDetector(
|
||||||
onTap: () async {
|
// onTap: () async {
|
||||||
ref
|
// ref
|
||||||
.read(priceAnd24hChangeNotifierProvider)
|
// .read(priceAnd24hChangeNotifierProvider)
|
||||||
.tokenContractAddressesToCheck
|
// .tokenContractAddressesToCheck
|
||||||
.add(
|
// .add(
|
||||||
"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48");
|
// "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48");
|
||||||
ref
|
// ref
|
||||||
.read(priceAnd24hChangeNotifierProvider)
|
// .read(priceAnd24hChangeNotifierProvider)
|
||||||
.tokenContractAddressesToCheck
|
// .tokenContractAddressesToCheck
|
||||||
.add(
|
// .add(
|
||||||
"0xdAC17F958D2ee523a2206206994597C13D831ec7");
|
// "0xdAC17F958D2ee523a2206206994597C13D831ec7");
|
||||||
await ref
|
// await ref
|
||||||
.read(priceAnd24hChangeNotifierProvider)
|
// .read(priceAnd24hChangeNotifierProvider)
|
||||||
.updatePrice();
|
// .updatePrice();
|
||||||
|
//
|
||||||
final x = ref
|
// final x = ref
|
||||||
.read(priceAnd24hChangeNotifierProvider)
|
// .read(priceAnd24hChangeNotifierProvider)
|
||||||
.getTokenPrice(
|
// .getTokenPrice(
|
||||||
"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48");
|
// "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48");
|
||||||
|
//
|
||||||
print(
|
// print(
|
||||||
"PRICE 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48: $x");
|
// "PRICE 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48: $x");
|
||||||
},
|
// },
|
||||||
child: RoundedWhiteContainer(
|
// child: RoundedWhiteContainer(
|
||||||
child: Text(
|
// child: Text(
|
||||||
"Click me",
|
// "Click me",
|
||||||
style: STextStyles.button(context).copyWith(
|
// style: STextStyles.button(context).copyWith(
|
||||||
color: Theme.of(context)
|
// color: Theme.of(context)
|
||||||
.extension<StackColors>()!
|
// .extension<StackColors>()!
|
||||||
.accentColorDark),
|
// .accentColorDark),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
);
|
// );
|
||||||
}),
|
// }),
|
||||||
const SizedBox(
|
// const SizedBox(
|
||||||
height: 12,
|
// height: 12,
|
||||||
),
|
// ),
|
||||||
Consumer(builder: (_, ref, __) {
|
// Consumer(builder: (_, ref, __) {
|
||||||
return GestureDetector(
|
// return GestureDetector(
|
||||||
onTap: () async {
|
// onTap: () async {
|
||||||
// final erc20 = Erc20ContractInfo(
|
// // final erc20 = Erc20ContractInfo(
|
||||||
// contractAddress: 'some con',
|
// // contractAddress: 'some con',
|
||||||
// name: "loonamsn",
|
// // name: "loonamsn",
|
||||||
// symbol: "DD",
|
// // symbol: "DD",
|
||||||
// decimals: 19,
|
// // decimals: 19,
|
||||||
// );
|
// // );
|
||||||
//
|
// //
|
||||||
// final json = erc20.toJson();
|
// // final json = erc20.toJson();
|
||||||
//
|
// //
|
||||||
// print(json);
|
// // print(json);
|
||||||
//
|
// //
|
||||||
// final ee = EthContractInfo.fromJson(json);
|
// // final ee = EthContractInfo.fromJson(json);
|
||||||
//
|
// //
|
||||||
// print(ee);
|
// // print(ee);
|
||||||
},
|
// },
|
||||||
child: RoundedWhiteContainer(
|
// child: RoundedWhiteContainer(
|
||||||
child: Text(
|
// child: Text(
|
||||||
"Click me",
|
// "Click me",
|
||||||
style: STextStyles.button(context).copyWith(
|
// style: STextStyles.button(context).copyWith(
|
||||||
color: Theme.of(context)
|
// color: Theme.of(context)
|
||||||
.extension<StackColors>()!
|
// .extension<StackColors>()!
|
||||||
.accentColorDark),
|
// .accentColorDark),
|
||||||
),
|
// ),
|
||||||
),
|
// ),
|
||||||
);
|
// );
|
||||||
}),
|
// }),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 12,
|
height: 12,
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue