基础组件库
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.

wallet_data.dart 361 B

12345678910111213
  1. import 'package:flutter/cupertino.dart';
  2. import 'package:flutter/material.dart';
  3. import 'package:zhiying_base_widget/widgets/wallet/wallet_data/wallet_data_sk.dart';
  4. class WalletData extends StatelessWidget {
  5. @override
  6. Widget build(BuildContext context) {
  7. return Container(
  8. width: double.infinity,
  9. child: WalletDataSkeleton(),
  10. );
  11. }
  12. }