Commit 79a469d6 authored by 林生雨's avatar 林生雨

fix bug

parent ea808210
......@@ -63,8 +63,11 @@ class ReputationsState extends BasePage<ReputationsPage> {
?.onClick(pageName(), "return");
Navigator.pop(context, "");
},
// child: Image.asset("images/nav_back.png"),
child: Center(
child: Container(
alignment: Alignment.centerLeft,
padding: EdgeInsets.only(left: 22),
width: 30,
height: double.maxFinite,
child: SvgPicture.asset("images/left_arrow.svg",
color: Color(0xff323232)),
),
......
......@@ -16,11 +16,15 @@ AppBar baseAppBar(
centerTitle: centerTitle,
leading: GestureDetector(
onTap: backClick,
child: Center(
child: Container(
alignment: Alignment.centerLeft,
padding: EdgeInsets.only(left: 22),
width: 30,
height: double.maxFinite,
child: SvgPicture.asset(
"images/left_arrow.svg",
color: Color(0xff323232),
)),
"images/left_arrow.svg",
color: Color(0xff323232),
)),
),
actions: action == null ? List<Widget>() : action,
);
......@@ -38,10 +42,6 @@ Widget loadingItem() {
return Center(child: CircularProgressIndicator());
}
Widget netErrorItem(){
}
Widget netErrorItem() {}
//TODO
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