clean up hidden settings

This commit is contained in:
julian 2023-09-05 11:53:44 -06:00
parent ca95612d69
commit 9237e99f0c

View file

@ -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(
height: 12,
),
Consumer(builder: (_, ref, __) {
return GestureDetector(
onTap: () async {
// final erc20 = Erc20ContractInfo(
// contractAddress: 'some con',
// name: "loonamsn",
// symbol: "DD",
// decimals: 19,
// ); // );
// // }),
// final json = erc20.toJson(); // const SizedBox(
// // height: 12,
// print(json); // ),
// // Consumer(builder: (_, ref, __) {
// final ee = EthContractInfo.fromJson(json); // return GestureDetector(
// // onTap: () async {
// print(ee); // // final erc20 = Erc20ContractInfo(
}, // // contractAddress: 'some con',
child: RoundedWhiteContainer( // // name: "loonamsn",
child: Text( // // symbol: "DD",
"Click me", // // decimals: 19,
style: STextStyles.button(context).copyWith( // // );
color: Theme.of(context) // //
.extension<StackColors>()! // // final json = erc20.toJson();
.accentColorDark), // //
), // // print(json);
), // //
); // // final ee = EthContractInfo.fromJson(json);
}), // //
// // print(ee);
// },
// child: RoundedWhiteContainer(
// child: Text(
// "Click me",
// style: STextStyles.button(context).copyWith(
// color: Theme.of(context)
// .extension<StackColors>()!
// .accentColorDark),
// ),
// ),
// );
// }),
const SizedBox( const SizedBox(
height: 12, height: 12,
), ),