mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
96 lines
3.2 KiB
Dart
96 lines
3.2 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:isar/isar.dart';
|
|
import 'package:stackwallet/db/main_db.dart';
|
|
import 'package:stackwallet/models/isar/models/isar_models.dart';
|
|
import 'package:stackwallet/pages/receive_view/addresses/address_card.dart';
|
|
import 'package:stackwallet/providers/global/wallets_provider.dart';
|
|
import 'package:stackwallet/utilities/clipboard_interface.dart';
|
|
import 'package:stackwallet/utilities/text_styles.dart';
|
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
|
import 'package:stackwallet/widgets/background.dart';
|
|
import 'package:stackwallet/widgets/conditional_parent.dart';
|
|
import 'package:stackwallet/widgets/custom_buttons/app_bar_icon_button.dart';
|
|
import 'package:stackwallet/widgets/loading_indicator.dart';
|
|
|
|
class ReceivingAddressesView extends ConsumerWidget {
|
|
const ReceivingAddressesView({
|
|
Key? key,
|
|
required this.walletId,
|
|
required this.isDesktop,
|
|
this.clipboard = const ClipboardWrapper(),
|
|
}) : super(key: key);
|
|
|
|
static const String routeName = "/receivingAddressesView";
|
|
|
|
final String walletId;
|
|
final bool isDesktop;
|
|
final ClipboardInterface clipboard;
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final coin = ref.watch(walletsChangeNotifierProvider
|
|
.select((value) => value.getManager(walletId).coin));
|
|
return ConditionalParent(
|
|
condition: !isDesktop,
|
|
builder: (child) => Background(
|
|
child: Scaffold(
|
|
backgroundColor:
|
|
Theme.of(context).extension<StackColors>()!.background,
|
|
appBar: AppBar(
|
|
backgroundColor:
|
|
Theme.of(context).extension<StackColors>()!.backgroundAppBar,
|
|
leading: AppBarBackButton(
|
|
onPressed: () {
|
|
Navigator.of(context).pop();
|
|
},
|
|
),
|
|
title: Text(
|
|
"Receiving addresses",
|
|
style: STextStyles.navBarTitle(context),
|
|
),
|
|
),
|
|
body: Padding(
|
|
padding: const EdgeInsets.all(16),
|
|
child: child,
|
|
),
|
|
),
|
|
),
|
|
child: FutureBuilder(
|
|
future: MainDB.instance
|
|
.getAddresses(walletId)
|
|
.filter()
|
|
.subTypeEqualTo(AddressSubType.receiving)
|
|
.and()
|
|
.not()
|
|
.typeEqualTo(AddressType.nonWallet)
|
|
.sortByDerivationIndex()
|
|
.findAll(),
|
|
builder: (context, AsyncSnapshot<List<Address>> snapshot) {
|
|
if (snapshot.connectionState == ConnectionState.done &&
|
|
snapshot.data != null) {
|
|
// listview
|
|
return ListView.separated(
|
|
itemCount: snapshot.data!.length,
|
|
separatorBuilder: (_, __) => Container(
|
|
height: 10,
|
|
),
|
|
itemBuilder: (_, index) => AddressCard(
|
|
walletId: walletId,
|
|
address: snapshot.data![index],
|
|
coin: coin,
|
|
),
|
|
);
|
|
} else {
|
|
return const Center(
|
|
child: LoadingIndicator(
|
|
height: 200,
|
|
width: 200,
|
|
),
|
|
);
|
|
}
|
|
},
|
|
),
|
|
);
|
|
}
|
|
}
|