基础组件库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
566 B

  1. import 'package:flutter/cupertino.dart';
  2. import 'package:flutter/material.dart';
  3. import 'package:zhiying_base_widget/pages/withdraw_page/withdraw_page.dart';
  4. import 'package:zhiying_base_widget/widgets/wallet/wallet_detail/wallet_detail_sk.dart';
  5. class WalletDetail extends StatelessWidget {
  6. @override
  7. Widget build(BuildContext context) {
  8. return GestureDetector(
  9. child: WalletDetailSkeleton(),
  10. onTap: () {
  11. Navigator.push(context, MaterialPageRoute(builder: (context) {
  12. return WithdrawPage();
  13. }));
  14. },
  15. );
  16. }
  17. }