49 lines
1.6 KiB
Dart
49 lines
1.6 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
import '../../../../app_settings/app_colors.dart';
|
|
import '../../../../tools/submitBtn.dart';
|
|
import '../../../../tools/titleAppBar.dart';
|
|
import '../../../../translations/trans_lib.dart';
|
|
|
|
class UploadDataPage extends StatefulWidget {
|
|
const UploadDataPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<UploadDataPage> createState() => _UploadDataPageState();
|
|
}
|
|
|
|
class _UploadDataPageState extends State<UploadDataPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: Colors.white,
|
|
appBar: TitleAppBar(barTitle: TranslationLoader.lanKeys!.uploadData!.tr, haveBack:true, backgroundColor: AppColors.mainColor),
|
|
body:Container(
|
|
padding: EdgeInsets.all(30.w),
|
|
child: Column(
|
|
children: [
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: [
|
|
Expanded(child: Text(TranslationLoader.lanKeys!.uploadDataTip!.tr, style: TextStyle(fontSize: 22.sp, color: AppColors.darkGrayTextColor),)),
|
|
],
|
|
),
|
|
SizedBox(height: 30.h,),
|
|
SubmitBtn(btnName: TranslationLoader.lanKeys!.begin!.tr,
|
|
borderRadius: 20.w,
|
|
fontSize: 24.sp,
|
|
// margin: EdgeInsets.only(left: 03.w, right: 30.w, top: 20.w),
|
|
padding: EdgeInsets.only(top: 20.w, bottom: 20.w),
|
|
onClick: () {
|
|
|
|
}
|
|
),
|
|
],
|
|
),
|
|
)
|
|
);
|
|
}
|
|
}
|