Merge remote-tracking branch 'origin/1.1.1' into android_1.0.1

This commit is contained in:
yangyuhao 2023-08-25 13:22:57 +07:00
commit cac1567753
2 changed files with 268 additions and 271 deletions

View File

@ -37,14 +37,12 @@ class _ShareState extends State<Share> {
return Scaffold(
backgroundColor: Colors.transparent,
body: Container(
child: Stack(
alignment: Alignment.center,
child: Column(
children: [
Positioned(
top: 84.sp,
child: Container(
Expanded(child: Container()),
Container(
width: Get.width - 40.sp,
height: Get.height - 84.sp - Get.bottomBarHeight - 164.sp - 10.sp,
// height: Get.height - Get.bottomBarHeight - 164.sp - 10.sp,
child:SingleChildScrollView(
child: RepaintBoundary(
key: _globalKey,
@ -60,7 +58,7 @@ class _ShareState extends State<Share> {
Container(
width: Get.width,
height: 65.sp,
margin: EdgeInsets.only(left: 15.sp, top: 20.sp),
margin: EdgeInsets.only(left: 15.sp, top: 20.sp,right: 15.sp),
child: Row(
children: [
Center(
@ -106,8 +104,8 @@ class _ShareState extends State<Share> {
),
Image.asset(
getBaseImage("ic_launcher"),
width: 80.sp,
height: 80.sp,
width: 65.sp,
height: 65.sp,
)
],
),
@ -121,7 +119,7 @@ class _ShareState extends State<Share> {
child: Column(
children: [
SizedBox(
height: 20.sp,
height: 5.sp,
),
Container(
padding: EdgeInsets.only(left: 15.sp,right: 15.sp),
@ -141,7 +139,7 @@ class _ShareState extends State<Share> {
),
),
Container(
height: 90.sp,
// height: 90.sp,
// color: Color(0xFF334141),
alignment: Alignment.center,
// color: Colors.yellow,
@ -166,7 +164,7 @@ class _ShareState extends State<Share> {
'专属邀请码',
style: TextStyle(
color: Colors.white,
fontSize: 16.sp),
fontSize: 18.sp),
),
SizedBox(
width: 8.sp,
@ -209,7 +207,7 @@ class _ShareState extends State<Share> {
'扫码或长按识别下载APP认识更多小众圈子里的人给生活带来更多乐趣',
style: TextStyle(
color: Colors.white,
fontSize: 12.sp)),
fontSize: 15.sp)),
)
],
),
@ -242,10 +240,7 @@ class _ShareState extends State<Share> {
))
),
),
),
Positioned(
bottom: 0,
child: SafeArea(
SafeArea(
top: false,
child: Container(
height: 164.sp,
@ -299,7 +294,7 @@ class _ShareState extends State<Share> {
)
],
),
)))
))
],
),
),

View File

@ -52,6 +52,7 @@ class MinefragmentPage extends StatelessWidget {
left: 11.sp,
right: 11.sp,
),
child: SingleChildScrollView(
child: Column(
children: [
_buildAvatarRow(logic),
@ -77,6 +78,7 @@ class MinefragmentPage extends StatelessWidget {
),
),
),
),
);
});
}