Commit f50eb013 authored by 林生雨's avatar 林生雨

commit

parent 0fe58f30
......@@ -38,9 +38,11 @@ class ProjectDetailsState extends BaseState<ProjectDetailsPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("项目说明"),
),
appBar: baseAppBar(title: "项目说明",
centerTitle: true,
backClick: (){
Navigator.pop(context);
}),
body: Center(
child: getBody(),
),
......
......@@ -31,6 +31,10 @@ class TestState extends BaseState<TestPage> {
list.add(listItem("方案页面", () {
JumpUtil.jumpToPageRight(context, RouterCenterImpl().findClueRouter().getPlanPage());
}));
list.add(listItem("项目说明", () {
JumpUtil.jumpToPageRight(context, RouterCenterImpl().findClueRouter().getProjectDetailsPage());
}));
return list;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment