status_view.dart 726 B

1234567891011121314151617181920212223242526
  1. import 'package:flutter/cupertino.dart';
  2. import 'package:flutter_screenutil/flutter_screenutil.dart';
  3. import 'package:get/get.dart';
  4. import '../../resource/assets.gen.dart';
  5. import '../../resource/colors.gen.dart';
  6. import '../../resource/string.gen.dart';
  7. Widget getTalkLoadingView() {
  8. return SizedBox(
  9. width: double.infinity,
  10. child: Column(
  11. children: [
  12. SizedBox(height: 138.h),
  13. SizedBox(
  14. width: 100.w,
  15. height: 100.w,
  16. child: Assets.anim.talkAnalyse.image()),
  17. SizedBox(height: 12.h),
  18. Text(StringName.talkAnalyzing.tr,
  19. style:
  20. TextStyle(fontSize: 14.sp, color: ColorName.secondaryTextColor))
  21. ],
  22. ),
  23. );
  24. }