mobile_skt/lib/screens/home/components/task_page_holder.dart

41 lines
1.5 KiB
Dart
Raw Normal View History

2024-03-19 11:09:07 +08:00
import 'package:flutter/material.dart';
import 'package:sk_base_mobile/screens/home/components/change_button_roe.dart';
import 'package:sk_base_mobile/screens/home/components/task_page_View.dart';
2024-03-19 13:27:42 +08:00
import 'package:sk_base_mobile/util/screen_adaper_util.dart';
2024-03-19 11:09:07 +08:00
class TaskPageBody extends StatelessWidget {
const TaskPageBody({super.key});
@override
Widget build(BuildContext context) {
return Stack(
children: [
Positioned.fill(
child: Container(
2024-03-19 13:27:42 +08:00
margin: EdgeInsets.only(top: ScreenAdaper.height(25)),
2024-03-19 11:09:07 +08:00
decoration: BoxDecoration(
2024-03-19 13:27:42 +08:00
borderRadius: BorderRadius.only(
topRight: Radius.circular(ScreenAdaper.sp(40)),
topLeft: Radius.circular(ScreenAdaper.sp(40))),
2024-03-19 11:09:07 +08:00
gradient: LinearGradient(
begin: Alignment.topCenter,
end: Alignment.bottomCenter,
colors: [
Colors.white.withOpacity(.6),
Colors.white.withOpacity(.5),
Colors.white.withOpacity(.4),
Colors.white.withOpacity(.3),
Colors.white.withOpacity(.2),
Colors.white.withOpacity(.0),
Colors.white.withOpacity(.0),
Colors.white.withOpacity(.0),
Colors.white.withOpacity(.0),
Colors.white.withOpacity(.0),
])),
child: TaskPageView(),
)),
ChangeButtonRow(),
],
);
}
}