This commit is contained in:
zhutao
2025-09-09 15:45:08 +08:00
parent d902f72335
commit ccb7d5bb24
3 changed files with 86 additions and 19 deletions

View File

@@ -5,6 +5,7 @@ import 'package:plan/theme/decorations/app_shadows.dart';
import 'package:provider/provider.dart';
import 'other/bar_actions.dart';
import 'other/done_stamp.dart';
import 'other/footer_btn.dart';
import 'widgets/avatar_card.dart';
import 'widgets/coach_message.dart';
@@ -28,6 +29,7 @@ class PlanDetailPage extends StatefulWidget {
class _PlanDetailPageState extends State<PlanDetailPage> {
final ScrollController scrollController = ScrollController();
///store对象
late PlanDetailStore store;
@@ -57,21 +59,28 @@ class _PlanDetailPageState extends State<PlanDetailPage> {
padding: EdgeInsets.only(left: 15, right: 15, bottom: 1),
child: Container(
decoration: shadowDecoration,
child: Column(
child: Stack(
children: [
Expanded(
child: ScrollBox(
child: Column(
children: [
CoachMessage(),
PlanList(),
SuggestedTitle(),
SuggestedList(),
],
Column(
children: [
Expanded(
child: ScrollBox(
child: Column(
children: [
CoachMessage(),
PlanList(),
SuggestedTitle(),
SuggestedList(),
],
),
),
),
),
FooterBtn(),
],
),
Positioned(
child: DoneStamp(),
),
FooterBtn()
],
),
),