reason

update styles

......@@ -44,6 +44,7 @@ class _CategoriesPageState extends State<CategoriesPage>
create: (_) => provider,
child: Scaffold(
appBar: MyAppBar(
isBack: false,
homeMenuHeader: Container(
alignment: Alignment.center,
margin: const EdgeInsets.symmetric(horizontal: 5.0),
......
......@@ -85,9 +85,13 @@ class CategoryItem extends StatelessWidget {
style:
TextStyle(fontSize: 22.0, fontFamily: "ZCOOLXiaoWei"),
),
const Text(
"[唐] 陈子昂《登幽州台歌》",
maxLines: 1,
Container(
width: double.infinity,
alignment: Alignment.centerRight,
child: const Text(
"[唐] 陈子昂《登幽州台歌》",
maxLines: 1,
),
),
],
),
......
......@@ -151,7 +151,7 @@ class FriendCellState extends State<FriendCell> {
MainAxisAlignment.center,
children: <Widget>[
Icon(
Icons.favorite_border,
Icons.thumb_up_alt_outlined,
color: Colors.white,
size: 15.px,
),
......@@ -181,7 +181,7 @@ class FriendCellState extends State<FriendCell> {
MainAxisAlignment.center,
children: <Widget>[
Icon(
Icons.sms,
Icons.thumb_down_alt_outlined,
color: Colors.white,
size: 15.px,
),
......@@ -211,7 +211,7 @@ class FriendCellState extends State<FriendCell> {
MainAxisAlignment.center,
children: <Widget>[
Icon(
Icons.sms,
Icons.favorite_border_outlined,
color: Colors.white,
size: 15.px,
),
......@@ -241,7 +241,7 @@ class FriendCellState extends State<FriendCell> {
MainAxisAlignment.center,
children: <Widget>[
Icon(
Icons.sms,
Icons.chat_bubble_outline_outlined,
color: Colors.white,
size: 15.px,
),
......