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

fix bug

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