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