import 'package:flutter/cupertino.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:get/get.dart'; import '../../resource/assets.gen.dart'; import '../../resource/colors.gen.dart'; import '../../resource/string.gen.dart'; Widget getTalkLoadingView() { return SizedBox( width: double.infinity, child: Column( children: [ SizedBox(height: 138.h), SizedBox( width: 100.w, height: 100.w, child: Assets.anim.talkAnalyse.image()), SizedBox(height: 12.h), Text(StringName.talkAnalyzing.tr, style: TextStyle(fontSize: 14.sp, color: ColorName.secondaryTextColor)) ], ), ); }