Showing
3 changed files
with
12 additions
and
7 deletions
| ... | @@ -44,6 +44,7 @@ class _CategoriesPageState extends State<CategoriesPage> | ... | @@ -44,6 +44,7 @@ class _CategoriesPageState extends State<CategoriesPage> |
| 44 | create: (_) => provider, | 44 | create: (_) => provider, |
| 45 | child: Scaffold( | 45 | child: Scaffold( |
| 46 | appBar: MyAppBar( | 46 | appBar: MyAppBar( |
| 47 | + isBack: false, | ||
| 47 | homeMenuHeader: Container( | 48 | homeMenuHeader: Container( |
| 48 | alignment: Alignment.center, | 49 | alignment: Alignment.center, |
| 49 | margin: const EdgeInsets.symmetric(horizontal: 5.0), | 50 | margin: const EdgeInsets.symmetric(horizontal: 5.0), | ... | ... |
| ... | @@ -85,9 +85,13 @@ class CategoryItem extends StatelessWidget { | ... | @@ -85,9 +85,13 @@ class CategoryItem extends StatelessWidget { |
| 85 | style: | 85 | style: |
| 86 | TextStyle(fontSize: 22.0, fontFamily: "ZCOOLXiaoWei"), | 86 | TextStyle(fontSize: 22.0, fontFamily: "ZCOOLXiaoWei"), |
| 87 | ), | 87 | ), |
| 88 | - const Text( | 88 | + Container( |
| 89 | - "[唐] 陈子昂《登幽州台歌》", | 89 | + width: double.infinity, |
| 90 | - maxLines: 1, | 90 | + alignment: Alignment.centerRight, |
| 91 | + child: const Text( | ||
| 92 | + "[唐] 陈子昂《登幽州台歌》", | ||
| 93 | + maxLines: 1, | ||
| 94 | + ), | ||
| 91 | ), | 95 | ), |
| 92 | ], | 96 | ], |
| 93 | ), | 97 | ), | ... | ... |
| ... | @@ -151,7 +151,7 @@ class FriendCellState extends State<FriendCell> { | ... | @@ -151,7 +151,7 @@ class FriendCellState extends State<FriendCell> { |
| 151 | MainAxisAlignment.center, | 151 | MainAxisAlignment.center, |
| 152 | children: <Widget>[ | 152 | children: <Widget>[ |
| 153 | Icon( | 153 | Icon( |
| 154 | - Icons.favorite_border, | 154 | + Icons.thumb_up_alt_outlined, |
| 155 | color: Colors.white, | 155 | color: Colors.white, |
| 156 | size: 15.px, | 156 | size: 15.px, |
| 157 | ), | 157 | ), |
| ... | @@ -181,7 +181,7 @@ class FriendCellState extends State<FriendCell> { | ... | @@ -181,7 +181,7 @@ class FriendCellState extends State<FriendCell> { |
| 181 | MainAxisAlignment.center, | 181 | MainAxisAlignment.center, |
| 182 | children: <Widget>[ | 182 | children: <Widget>[ |
| 183 | Icon( | 183 | Icon( |
| 184 | - Icons.sms, | 184 | + Icons.thumb_down_alt_outlined, |
| 185 | color: Colors.white, | 185 | color: Colors.white, |
| 186 | size: 15.px, | 186 | size: 15.px, |
| 187 | ), | 187 | ), |
| ... | @@ -211,7 +211,7 @@ class FriendCellState extends State<FriendCell> { | ... | @@ -211,7 +211,7 @@ class FriendCellState extends State<FriendCell> { |
| 211 | MainAxisAlignment.center, | 211 | MainAxisAlignment.center, |
| 212 | children: <Widget>[ | 212 | children: <Widget>[ |
| 213 | Icon( | 213 | Icon( |
| 214 | - Icons.sms, | 214 | + Icons.favorite_border_outlined, |
| 215 | color: Colors.white, | 215 | color: Colors.white, |
| 216 | size: 15.px, | 216 | size: 15.px, |
| 217 | ), | 217 | ), |
| ... | @@ -241,7 +241,7 @@ class FriendCellState extends State<FriendCell> { | ... | @@ -241,7 +241,7 @@ class FriendCellState extends State<FriendCell> { |
| 241 | MainAxisAlignment.center, | 241 | MainAxisAlignment.center, |
| 242 | children: <Widget>[ | 242 | children: <Widget>[ |
| 243 | Icon( | 243 | Icon( |
| 244 | - Icons.sms, | 244 | + Icons.chat_bubble_outline_outlined, |
| 245 | color: Colors.white, | 245 | color: Colors.white, |
| 246 | size: 15.px, | 246 | size: 15.px, |
| 247 | ), | 247 | ), | ... | ... |
-
Please register or login to post a comment