diff --git a/lib/pages/community/community_index.dart b/lib/pages/community/community_index.dart index 282459f0..49d5a37e 100644 --- a/lib/pages/community/community_index.dart +++ b/lib/pages/community/community_index.dart @@ -1,12 +1,11 @@ +import 'package:akuCommunity/base/base_style.dart'; import 'package:akuCommunity/pages/community/note_create_page.dart'; +import 'package:akuCommunity/widget/bee_scaffold.dart'; import 'package:flutter/material.dart'; import 'package:flutter/cupertino.dart'; -import 'package:flutter_icons/flutter_icons.dart'; import 'package:akuCommunity/utils/headers.dart'; -import 'package:akuCommunity/widget/app_bar_action.dart'; -import 'package:akuCommunity/routers/page_routers.dart'; -import 'package:get/get.dart'; import 'widget/tab_list.dart'; +import 'package:velocity_x/velocity_x.dart'; class CommunityIndex extends StatefulWidget { CommunityIndex({Key key}) : super(key: key); @@ -28,10 +27,6 @@ class _CommunityIndexState extends State {'name': '我的', 'id': 'new'}, ]; - List> actionsList = [ - {'title': '消息', 'icon': AntDesign.bells, 'funtion': null} - ]; - @override void initState() { super.initState(); @@ -44,12 +39,21 @@ class _CommunityIndexState extends State } List _listActions() { - return actionsList - .map((item) => AppBarAction( - title: item['title'], - icon: item['icon'], - )) - .toList(); + return [ + FlatButton( + minWidth: 48.w + 27.w * 2, + onPressed: () {}, + child: Column( + mainAxisAlignment: MainAxisAlignment.spaceAround, + children: [ + Icon( + CupertinoIcons.bell, + size: 48.w, + ), + '消息'.text.black.size(20.sp).make(), + ], + )) + ]; } AppBar _appBar() { @@ -108,12 +112,12 @@ class _CommunityIndexState extends State appBar: _appBar(), floatingActionButton: _floatingActionButton(), body: TabBarView( - controller: _tabController, - children: List.generate( - tabs.length, - (index) => TabList(index: index), - ), - ), + controller: _tabController, + children: List.generate( + tabs.length, + (index) => TabList(index: index), + ), + ), ); } }