main.dart 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. import 'package:flutter/material.dart';
  2. import 'package:marquee/marquee.dart';
  3. void main() {
  4. runApp(MyApp());
  5. }
  6. class MyApp extends StatelessWidget {
  7. const MyApp({Key key}) : super(key: key);
  8. @override
  9. Widget build(BuildContext context) {
  10. return MaterialApp(
  11. title: "某音",
  12. home: Scaffold(
  13. body: Container(
  14. decoration: BoxDecoration(color: Colors.grey[500]),
  15. child: Home(),
  16. ),
  17. bottomNavigationBar: BottomAppBar(
  18. child: Container(
  19. height: 60,
  20. decoration: BoxDecoration(color: Colors.black),
  21. child: BtmBar(),
  22. ),
  23. ),
  24. ),
  25. );
  26. }
  27. }
  28. class Home extends StatelessWidget {
  29. const Home({Key key}) : super(key: key);
  30. @override
  31. Widget build(BuildContext context) {
  32. double screenWidth = MediaQuery.of(context).size.width;
  33. double screenHeight = MediaQuery.of(context).size.height;
  34. return Stack(children: [
  35. Positioned(
  36. top: 0,
  37. height: 120,
  38. width: screenWidth,
  39. child: Container(
  40. // decoration: BoxDecoration(color: Colors.pinkAccent),
  41. child: TopTab(),
  42. ),
  43. ),
  44. Positioned(
  45. bottom: 0,
  46. width: 0.70 * screenWidth,
  47. height: 140,
  48. child: Container(
  49. // decoration: BoxDecoration(color: Colors.redAccent),
  50. child: BtnContent(),
  51. ),
  52. ),
  53. Positioned(
  54. right: 0,
  55. width: 0.25 * screenWidth,
  56. height: 0.4 * screenHeight,
  57. top: 0.32 * screenHeight,
  58. child: Container(
  59. // decoration: BoxDecoration(color: Colors.orangeAccent),
  60. child: getButtonList(),
  61. ),
  62. ),
  63. Positioned(
  64. bottom: 20,
  65. right: 0,
  66. width: 0.25 * screenWidth,
  67. height: 0.25 * screenWidth,
  68. child: Container(
  69. width: 20,
  70. height: 20,
  71. // decoration: BoxDecoration(color: Colors.purpleAccent),
  72. child: RotateAlbum(),
  73. ),
  74. )
  75. ]);
  76. }
  77. }
  78. class TopTab extends StatefulWidget {
  79. TopTab({Key key}) : super(key: key);
  80. _TopTabState createState() => _TopTabState();
  81. }
  82. class _TopTabState extends State<TopTab> with SingleTickerProviderStateMixin {
  83. TabController _controller;
  84. @override
  85. void initState() {
  86. // TODO: implement initState
  87. super.initState();
  88. _controller = TabController(vsync: this, length: 2, initialIndex: 1);
  89. }
  90. @override
  91. Widget build(BuildContext context) {
  92. return Row(
  93. crossAxisAlignment: CrossAxisAlignment.center,
  94. children: <Widget>[
  95. Expanded(
  96. flex: 2,
  97. child: Icon(
  98. Icons.search,
  99. size: 30,
  100. color: Colors.white,
  101. ),
  102. ),
  103. Expanded(
  104. flex: 8,
  105. child: Container(
  106. padding: EdgeInsets.symmetric(horizontal: 50),
  107. width: 240,
  108. child: TabBar(
  109. indicatorColor: Colors.white,
  110. labelStyle: TextStyle(color: Colors.white, fontSize: 25),
  111. indicatorPadding: EdgeInsets.symmetric(horizontal: 25),
  112. unselectedLabelStyle:
  113. TextStyle(color: Colors.grey[700], fontSize: 20),
  114. controller: _controller,
  115. tabs: <Widget>[Text("关注"), Text("推荐")],
  116. )),
  117. ),
  118. Flexible(
  119. flex: 2,
  120. child: Row(children: [
  121. SizedBox(
  122. width: 20,
  123. ),
  124. Icon(
  125. Icons.live_tv,
  126. size: 30,
  127. color: Colors.white,
  128. ),
  129. ]),
  130. )
  131. ],
  132. );
  133. }
  134. }
  135. class BtmBar extends StatelessWidget {
  136. const BtmBar({Key key}) : super(key: key);
  137. @override
  138. Widget build(BuildContext context) {
  139. return Container(
  140. child: Row(
  141. mainAxisAlignment: MainAxisAlignment.spaceAround,
  142. children: <Widget>[
  143. getBtmTextWidget("首页", true),
  144. getBtmTextWidget("同城", false),
  145. AddIcon(),
  146. getBtmTextWidget("消息", false),
  147. getBtmTextWidget("我", false),
  148. ],
  149. ),
  150. );
  151. }
  152. }
  153. getBtmTextWidget(String content, bool ifSelected) {
  154. return Text("$content",
  155. style: ifSelected
  156. ? TextStyle(fontSize: 18, color: Colors.white)
  157. : TextStyle(fontSize: 18, color: Colors.grey[600]));
  158. }
  159. class AddIcon extends StatelessWidget {
  160. const AddIcon({Key key}) : super(key: key);
  161. @override
  162. Widget build(BuildContext context) {
  163. return Container(
  164. // decoration: BoxDecoration(),
  165. height: 35,
  166. width: 60,
  167. child: Stack(
  168. children: <Widget>[
  169. Positioned(
  170. height: 35,
  171. width: 50,
  172. child: Container(
  173. decoration: BoxDecoration(
  174. color: Colors.cyan, borderRadius: BorderRadius.circular(10)),
  175. ),
  176. ),
  177. Positioned(
  178. height: 35,
  179. width: 50,
  180. right: 0,
  181. child: Container(
  182. decoration: BoxDecoration(
  183. color: Colors.redAccent,
  184. borderRadius: BorderRadius.circular(10)),
  185. ),
  186. ),
  187. Positioned(
  188. height: 35,
  189. width: 50,
  190. right: 5,
  191. child: Container(
  192. decoration: BoxDecoration(
  193. color: Colors.white, borderRadius: BorderRadius.circular(10)),
  194. child: Icon(Icons.add),
  195. ),
  196. ),
  197. ],
  198. ),
  199. );
  200. }
  201. }
  202. class BtnContent extends StatelessWidget {
  203. const BtnContent({Key key}) : super(key: key);
  204. @override
  205. Widget build(BuildContext context) {
  206. return Container(
  207. child: Column(
  208. mainAxisSize: MainAxisSize.min,
  209. children: <Widget>[
  210. ListTile(
  211. title: Text("@人民日报",style: TextStyle(color: Colors.white),),
  212. subtitle: Text("奥斯卡答复哈士大夫哈师大发输电和健康阿萨德鸿福路口氨基酸的鸿福路口啊,奥斯卡答复哈士大夫哈师大发输电和健康阿萨德鸿福路口氨基酸的鸿福路口啊",style: TextStyle(color: Colors.white,),maxLines: 3,overflow: TextOverflow.ellipsis,),
  213. ),
  214. Row(
  215. children: <Widget>[
  216. SizedBox(width: 10,),
  217. Icon(Icons.music_note),
  218. // Marquee(text: "",),
  219. // Flexible(
  220. // child: Marquee(
  221. // text: '人民日报创作的一些比较',
  222. // style: TextStyle(fontWeight: FontWeight.bold),
  223. // scrollAxis: Axis.horizontal,
  224. // crossAxisAlignment: CrossAxisAlignment.start,
  225. // blankSpace: 20.0,
  226. // velocity: 100.0,
  227. // pauseAfterRound: Duration(seconds: 1),
  228. // startPadding: 10.0,
  229. // accelerationDuration: Duration(seconds: 1),
  230. // accelerationCurve: Curves.linear,
  231. // decelerationDuration: Duration(milliseconds: 500),
  232. // decelerationCurve: Curves.easeOut,
  233. // )
  234. // )
  235. ],
  236. )
  237. ],
  238. ),
  239. );
  240. }
  241. }
  242. class RotateAlbum extends StatefulWidget {
  243. RotateAlbum({Key key}) : super(key: key);
  244. _RotateAlbumState createState() => _RotateAlbumState();
  245. }
  246. class _RotateAlbumState extends State<RotateAlbum>
  247. with SingleTickerProviderStateMixin {
  248. AnimationController _controller;
  249. var animation;
  250. @override
  251. void initState() {
  252. super.initState();
  253. _controller =
  254. AnimationController(vsync: this, duration: Duration(seconds: 4));
  255. animation = RotationTransition(
  256. turns: Tween(begin: 0.0, end: 1.0).animate(_controller)
  257. ..addStatusListener((status) {
  258. if (status == AnimationStatus.completed) {
  259. // _controller.forward(from: 0.0);
  260. }
  261. }),
  262. child: Container(
  263. child: CircleAvatar(backgroundImage: NetworkImage("https://gss1.bdstatic.com/9vo3dSag_xI4khGkpoWK1HF6hhy/baike/s%3D500/sign=dde475320ee9390152028d3e4bec54f9/d009b3de9c82d1586d8294a38f0a19d8bc3e42a4.jpg"),)
  264. ),
  265. );
  266. _controller.forward(from: 0.0);
  267. }
  268. @override
  269. Widget build(BuildContext context) {
  270. return Container(
  271. padding: EdgeInsets.all(15),
  272. child: animation,
  273. );
  274. }
  275. }
  276. getButtonList() {
  277. return Column(
  278. mainAxisAlignment: MainAxisAlignment.spaceAround,
  279. children: <Widget>[
  280. Container(
  281. width: 60,
  282. height: 70,
  283. child: Stack(
  284. children: <Widget>[
  285. Container(
  286. width: 60,
  287. height: 60,
  288. child: CircleAvatar(
  289. backgroundImage: NetworkImage(
  290. "https://pic2.zhimg.com/v2-a88cd7618933272ca681f86398e6240d_xll.jpg"),
  291. )),
  292. Positioned(
  293. bottom: 0,
  294. left: 17.5,
  295. child: Container(
  296. width: 25,
  297. height: 25,
  298. decoration: BoxDecoration(color: Colors.redAccent,borderRadius: BorderRadius.circular(25)),
  299. child: Icon(
  300. Icons.add,
  301. size: 20,
  302. color: Colors.white,
  303. ),
  304. ),
  305. )
  306. ],
  307. )),
  308. IconText(
  309. text: "999w",
  310. icon: Icon(Icons.favorite,size: 50,color: Colors.redAccent,),
  311. ),
  312. IconText(
  313. text: "999w",
  314. icon: Icon(Icons.feedback,size: 50,color: Colors.white,),
  315. ),
  316. IconText(
  317. text: "999w",
  318. icon: Icon(Icons.reply,size: 50,color: Colors.white,),
  319. ),
  320. ],
  321. );
  322. }
  323. class IconText extends StatelessWidget {
  324. const IconText({Key key, this.icon, this.text}) : super(key: key);
  325. final Icon icon;
  326. final String text;
  327. @override
  328. Widget build(BuildContext context) {
  329. return Container(
  330. child: Column(
  331. mainAxisSize: MainAxisSize.min,
  332. children: <Widget>[
  333. icon,
  334. Text(text,style: TextStyle(color: Colors.white),),
  335. ],
  336. ),
  337. );
  338. }
  339. }