app-starlock/star_lock/lib/versionUndate/versionUndate_page.dart
2024-03-12 17:14:12 +08:00

39 lines
1.3 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:get/get.dart';
import 'package:star_lock/versionUndate/versionUndate_logic.dart';
class VersionUndatePage extends StatefulWidget {
const VersionUndatePage({Key? key}) : super(key: key);
@override
State<VersionUndatePage> createState() => _VersionUndatePageState();
}
class _VersionUndatePageState extends State<VersionUndatePage> {
final logic = Get.put(VersionUndateLogic());
final state = Get.find<VersionUndateLogic>().state;
@override
Widget build(BuildContext context) {
return Container(
child: Column(
children: [
Container(
// color: AppColors.mainColor,
alignment: Alignment.topCenter,
height: 50.h,
child: Text('版本更新', style: TextStyle(fontSize: 28.sp, color: Colors.blue),)
),
Container(
padding: EdgeInsets.only(left:20.w, right: 20.w, top: 10.h),
alignment: Alignment.centerLeft,
child: Text('1、修复了一些bug \n2、优化了部分问题 \n3、修补了设置模块bug \n4、优化了部分问题 \n5、修补了设置模块bug', textAlign:TextAlign.start, style: TextStyle(fontSize: 20.sp))
),
],
),
);
}
}