geyan 5 years ago
parent
commit
faab83b322
2 changed files with 89 additions and 37 deletions
  1. 28 8
      lib/main.dart
  2. 61 29
      lib/widgets/BottomBar.dart

+ 28 - 8
lib/main.dart

@@ -22,13 +22,24 @@ class MyApp extends StatelessWidget {
     return MaterialApp(
       title: "某音",
       theme: ThemeData(primaryColor: Color(0xff121319)),
-      home: MultiProvider(
+      home: RecommendPage(selIndex: 0,),
+    );
+  }
+}
+
+class RecommendPage extends StatelessWidget {
+  const RecommendPage({Key key,@required this.selIndex}) : super(key: key);
+  final int selIndex;
+  @override
+  Widget build(BuildContext context) {
+    return MultiProvider(
           providers: [
             ChangeNotifierProvider(
               builder: (context) => RecommendProvider(),
             )
           ],
           child: Scaffold(
+            
             resizeToAvoidBottomInset: false,
             body: Container(
               decoration: BoxDecoration(color: Colors.black),
@@ -37,15 +48,14 @@ class MyApp extends StatelessWidget {
                 Home(),
               ]),
             ),
-            bottomNavigationBar: BottomSafeBar(),
-          )),
-    );
+            bottomNavigationBar: BottomSafeBar(selIndex: selIndex,),
+          ));
   }
 }
 
 class BottomSafeBar extends StatelessWidget {
-  const BottomSafeBar({Key key}) : super(key: key);
-
+  const BottomSafeBar({Key key,@required this.selIndex}) : super(key: key);
+  final int selIndex;
   @override
   Widget build(BuildContext context) {
     RecommendProvider provider = Provider.of<RecommendProvider>(context);
@@ -59,7 +69,7 @@ class BottomSafeBar extends StatelessWidget {
           decoration: BoxDecoration(color: Colors.black),
           height: 60,
           // decoration: BoxDecoration(color: Colors.black),
-          child: BtmBar(selectIndex: 0,),
+          child: BtmBar(selectIndex: selIndex,),
         ),
       )),
     );
@@ -204,6 +214,7 @@ class _TopTabState extends State<TopTab> with SingleTickerProviderStateMixin {
       crossAxisAlignment: CrossAxisAlignment.center,
       mainAxisAlignment: MainAxisAlignment.spaceBetween,
       children: [
+        // BottomNavigationBar(items: [BottomNavigationBarItem(icon: null,)],)
         SizedBox(
           width: 17 * rpx,
         ),
@@ -224,6 +235,8 @@ class _TopTabState extends State<TopTab> with SingleTickerProviderStateMixin {
                       TextStyle(color: Colors.grey[700], fontSize: 18),
                   controller: _controller,
                   tabs: <Widget>[Text("关注"), Text("推荐")],
+                  
+                  
                 ))),
         Icon(
           Icons.live_tv,
@@ -320,7 +333,7 @@ class _RotateAlbumState extends State<RotateAlbum>
       turns: Tween(begin: 0.0, end: 1.0).animate(_controller)
         ..addStatusListener((status) {
           if (status == AnimationStatus.completed) {
-            _controller.forward(from: 0.0);
+            // _controller.forward(from: 0.0);
           }
         }),
       child: Container(
@@ -332,6 +345,13 @@ class _RotateAlbumState extends State<RotateAlbum>
     _controller.forward(from: 0.0);
   }
 
+  @override
+  void dispose() {
+    // TODO: implement dispose
+    _controller.dispose();
+    super.dispose();
+  }
+
   @override
   Widget build(BuildContext context) {
     return Container(

+ 61 - 29
lib/widgets/BottomBar.dart

@@ -1,4 +1,6 @@
+import 'package:douyin_demo/main.dart';
 import 'package:douyin_demo/pages/sameCity/SameCityPage.dart';
+import 'package:douyin_demo/providers/RecommendProvider.dart';
 import 'package:flutter/material.dart';
 
 // class BtmBar extends StatelessWidget {
@@ -40,6 +42,12 @@ class _BtmBarState extends State<BtmBar> {
     }
     selected[widget.selectIndex] = true;
   }
+  
+  @override
+  void dispose() {
+  // _controller.dispose();
+  super.dispose();
+}
 
   tapItem(index) {
     // selected=List<bool>();
@@ -48,57 +56,81 @@ class _BtmBarState extends State<BtmBar> {
     // }
     // selected[index]=true;
     // setState(() {
-      
+
     //   selected=selected;
     // });
-    Navigator.push(context, MaterialPageRoute(builder: (context)=>SameCityMain(selIndex: index,)));
+    switch (index) {
+      case 0:
+        Navigator.pushAndRemoveUntil(
+            context,
+            MaterialPageRoute(
+                builder: (context) => RecommendPage(
+                      selIndex: index,
+                    )),
+            ModalRoute.withName("/Home"));
+        break;
+      case 1:
+        Navigator.pushAndRemoveUntil(
+            context,
+            MaterialPageRoute(
+                builder: (context) => SameCityMain(
+                      selIndex: index,
+                    )),
+            ModalRoute.withName("/sameCity"));
+        break;
+      default:
+        break;
+    }
   }
 
   @override
   Widget build(BuildContext context) {
     // RecommendProvider provider = Provider.of<RecommendProvider>(context);
-    double rpx=MediaQuery.of(context).size.width/750;
+    double rpx = MediaQuery.of(context).size.width / 750;
     return Container(
       child: Row(
         mainAxisAlignment: MainAxisAlignment.spaceAround,
         children: <Widget>[
           Expanded(
-            flex: 1,
-            child: getBtmTextWidget("首页", selected[0],(){tapItem(0);},rpx)
-          ),
-          Expanded(
-            flex: 1,
-            child: getBtmTextWidget("同城", selected[1],(){tapItem(1);},rpx)
-          ),
+              flex: 1,
+              child: getBtmTextWidget("首页", selected[0], () {
+                tapItem(0);
+              }, rpx)),
           Expanded(
-            flex: 1,
-            child: AddIcon()
-          ),
+              flex: 1,
+              child: getBtmTextWidget("同城", selected[1], () {
+                tapItem(1);
+              }, rpx)),
+          Expanded(flex: 1, child: AddIcon()),
           Expanded(
-            flex: 1,
-            child: getBtmTextWidget("消息", selected[2],(){tapItem(2);},rpx)
-          ),
+              flex: 1,
+              child: getBtmTextWidget("消息", selected[2], () {
+                tapItem(2);
+              }, rpx)),
           Expanded(
-            flex: 1,
-            child: getBtmTextWidget("我", selected[3],(){tapItem(3);},rpx)
-          ),
+              flex: 1,
+              child: getBtmTextWidget("我", selected[3], () {
+                tapItem(3);
+              }, rpx)),
         ],
       ),
     );
   }
 }
 
-getBtmTextWidget(String content, bool ifSelected,tapFunc,double rpx) {
+getBtmTextWidget(String content, bool ifSelected, tapFunc, double rpx) {
   return FlatButton(
-      onPressed: () {tapFunc();},
+      onPressed: () {
+        tapFunc();
+      },
       child: Text("$content",
           style: ifSelected
               ? TextStyle(
-                  fontSize: 30*rpx,
+                  fontSize: 30 * rpx,
                   color: Colors.white,
                   fontWeight: FontWeight.w900)
               : TextStyle(
-                  fontSize: 30*rpx,
+                  fontSize: 30 * rpx,
                   color: Colors.grey[600],
                   fontWeight: FontWeight.w900)));
 }
@@ -108,15 +140,15 @@ class AddIcon extends StatelessWidget {
 
   @override
   Widget build(BuildContext context) {
-    double rpx=MediaQuery.of(context).size.width/750;
-    double iconHeight = 55*rpx;
-    double totalWidth = 90*rpx;
-    double eachSide = 5*rpx;
+    double rpx = MediaQuery.of(context).size.width / 750;
+    double iconHeight = 55 * rpx;
+    double totalWidth = 90 * rpx;
+    double eachSide = 5 * rpx;
     return Container(
       // decoration: BoxDecoration(),
-      padding: EdgeInsets.symmetric(horizontal: 30*rpx),
+      padding: EdgeInsets.symmetric(horizontal: 30 * rpx),
       height: iconHeight,
-      width: 150*rpx,
+      width: 150 * rpx,
       child: Stack(
         children: <Widget>[
           Positioned(