1
This commit is contained in:
@@ -53,8 +53,6 @@ class _HomePageState extends State<HomePage> with AutomaticKeepAliveClientMixin
|
||||
quality: 85,
|
||||
rotate: 0,
|
||||
);
|
||||
print("压缩前:${File(path).lengthSync()}");
|
||||
print("压缩后长度${result?.length}");
|
||||
EasyLoading.show(
|
||||
status: 'Skin analysis in progress, please wait...',
|
||||
maskType: EasyLoadingMaskType.clear,
|
||||
|
||||
@@ -36,7 +36,7 @@ class UploadBox extends StatelessWidget {
|
||||
left: 0,
|
||||
child: Image.asset(
|
||||
"assets/image/bg_hushi.png",
|
||||
width: 0.7.sw,
|
||||
width: 0.63.sw,
|
||||
),
|
||||
),
|
||||
Positioned(
|
||||
|
||||
23
lib/page/my/my_page.dart
Normal file
23
lib/page/my/my_page.dart
Normal file
@@ -0,0 +1,23 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../widgets/common/app_backend.dart';
|
||||
|
||||
class MyPage extends StatefulWidget {
|
||||
const MyPage({super.key});
|
||||
|
||||
@override
|
||||
State<MyPage> createState() => _MyPageState();
|
||||
}
|
||||
|
||||
class _MyPageState extends State<MyPage> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return AppBackend(
|
||||
child: Column(
|
||||
children: [
|
||||
Text("ds")
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -214,7 +214,7 @@ class _LoginPageState extends State<LoginPage> {
|
||||
left: 20,
|
||||
right: 20,
|
||||
),
|
||||
child: Column(
|
||||
child: ListView(
|
||||
children: [
|
||||
LogoBox(),
|
||||
PageHeader(),
|
||||
|
||||
Reference in New Issue
Block a user