home_page.dart 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  1. import 'package:after_layout/after_layout.dart';
  2. import 'package:flutter/material.dart';
  3. class SelfHomePage extends StatelessWidget {
  4. const SelfHomePage({Key key}) : super(key: key);
  5. @override
  6. Widget build(BuildContext context) {
  7. double rpx = MediaQuery.of(context).size.width / 750;
  8. return Scaffold(
  9. body: Container(
  10. child: HomeMain(
  11. rpx: rpx,
  12. ),
  13. ),
  14. );
  15. }
  16. }
  17. class HomeMain extends StatefulWidget {
  18. HomeMain({Key key, @required this.rpx}) : super(key: key);
  19. final double rpx;
  20. _HomeMainState createState() => _HomeMainState();
  21. }
  22. class _HomeMainState extends State<HomeMain> with TickerProviderStateMixin {
  23. double extraPicHeight = 0;
  24. BoxFit fitType;
  25. double prev_dy;
  26. double rpx;
  27. AnimationController animationController;
  28. Animation<double> anim;
  29. TabController tabController;
  30. double expanedHeight = 300;
  31. @override
  32. void initState() {
  33. super.initState();
  34. tabController = TabController(vsync: this, length: 3);
  35. prev_dy = 0;
  36. fitType = BoxFit.fitWidth;
  37. animationController =
  38. AnimationController(vsync: this, duration: Duration(milliseconds: 300));
  39. anim = Tween(begin: 0.0, end: 0.0).animate(animationController);
  40. }
  41. updatePicHeight(changed) {
  42. if (prev_dy == 0) {
  43. prev_dy = changed;
  44. }
  45. extraPicHeight += changed - prev_dy;
  46. if (extraPicHeight >= 200 * widget.rpx) {
  47. fitType = BoxFit.fitHeight;
  48. } else {
  49. fitType = BoxFit.fitWidth;
  50. }
  51. setState(() {
  52. prev_dy = changed;
  53. extraPicHeight = extraPicHeight;
  54. fitType = fitType;
  55. });
  56. }
  57. updateExpandedHeight(height) {
  58. setState(() {
  59. expanedHeight = height;
  60. });
  61. }
  62. runAnimate() {
  63. setState(() {
  64. anim = Tween(begin: extraPicHeight, end: 0.0).animate(animationController)
  65. ..addListener(() {
  66. if (extraPicHeight >= widget.rpx * 200) {
  67. fitType = BoxFit.fitHeight;
  68. } else {
  69. fitType = BoxFit.fitWidth;
  70. }
  71. setState(() {
  72. extraPicHeight = anim.value;
  73. fitType = fitType;
  74. });
  75. });
  76. prev_dy = 0;
  77. });
  78. }
  79. @override
  80. Widget build(BuildContext context) {
  81. double rpx = MediaQuery.of(context).size.width / 750;
  82. return Listener(
  83. onPointerMove: (result) {
  84. updatePicHeight(result.position.dy);
  85. },
  86. onPointerUp: (_) {
  87. runAnimate();
  88. animationController.forward(from: 0);
  89. },
  90. child: CustomScrollView(
  91. physics: ClampingScrollPhysics(),
  92. slivers: <Widget>[
  93. SliverAppBar(
  94. pinned: true,
  95. floating: true,
  96. actions: <Widget>[
  97. IconButton(
  98. icon: Icon(Icons.search),
  99. onPressed: () {},
  100. ),
  101. IconButton(
  102. icon: Icon(Icons.more_vert),
  103. onPressed: () {},
  104. ),
  105. ],
  106. leading: IconButton(
  107. icon: Icon(Icons.arrow_back),
  108. onPressed: () {},
  109. ),
  110. bottom: PreferredSize(
  111. preferredSize: Size.fromHeight(50),
  112. child: TabBar(
  113. controller: tabController,
  114. tabs: <Widget>[
  115. Text("作品 91"),
  116. Text("动态 91"),
  117. Text("喜欢 91"),
  118. ],
  119. )),
  120. // expandedHeight: 510 * rpx + extraPicHeight,
  121. expandedHeight: expanedHeight + extraPicHeight,
  122. flexibleSpace: Container(
  123. child: TopBarWithCallback(
  124. extraPicHeight: extraPicHeight,
  125. fitType: fitType,
  126. updateHeight: updateExpandedHeight,
  127. ),
  128. ),
  129. ),
  130. SliverList(
  131. delegate: SliverChildBuilderDelegate((context, index) {
  132. return Container(
  133. height: 30,
  134. alignment: Alignment.centerLeft,
  135. color: Colors.blueAccent,
  136. child: Text("This is itm $index"),
  137. margin: EdgeInsets.symmetric(
  138. horizontal: 20 * rpx, vertical: 10 * rpx),
  139. );
  140. }, childCount: 80),
  141. )
  142. ],
  143. ));
  144. }
  145. }
  146. class TopBarWithCallback extends StatefulWidget {
  147. TopBarWithCallback(
  148. {Key key,
  149. @required this.extraPicHeight,
  150. @required this.fitType,
  151. @required this.updateHeight})
  152. : super(key: key);
  153. final double extraPicHeight;
  154. final BoxFit fitType;
  155. final Function(double) updateHeight;
  156. _TopBarWithCallbackState createState() => _TopBarWithCallbackState();
  157. }
  158. class _TopBarWithCallbackState extends State<TopBarWithCallback>
  159. with AfterLayoutMixin {
  160. @override
  161. Widget build(BuildContext context) {
  162. return Container(
  163. child: SliverTopBar(
  164. extraPicHeight: widget.extraPicHeight,
  165. fitType: widget.fitType,
  166. ),
  167. );
  168. }
  169. @override
  170. void afterFirstLayout(BuildContext context) {
  171. RenderBox box = context.findRenderObject();
  172. double height =
  173. box.getMaxIntrinsicHeight(MediaQuery.of(context).size.width);
  174. widget.updateHeight(height);
  175. }
  176. }
  177. class SliverTopBar extends StatelessWidget {
  178. const SliverTopBar(
  179. {Key key, @required this.extraPicHeight, @required this.fitType})
  180. : super(key: key);
  181. final double extraPicHeight;
  182. final BoxFit fitType;
  183. @override
  184. Widget build(BuildContext context) {
  185. double rpx = MediaQuery.of(context).size.width / 750;
  186. return Stack(
  187. children: <Widget>[
  188. Column(
  189. mainAxisSize: MainAxisSize.min,
  190. children: <Widget>[
  191. Image.asset(
  192. "lib/images/temple.jpg",
  193. width: 750 * rpx,
  194. height: 300 * rpx + extraPicHeight,
  195. fit: fitType,
  196. ),
  197. Container(
  198. padding: EdgeInsets.only(top: 20 * rpx),
  199. height: 120 * rpx,
  200. child: Row(
  201. mainAxisAlignment: MainAxisAlignment.end,
  202. children: <Widget>[
  203. Container(
  204. height: 80 * rpx,
  205. width: 330 * rpx,
  206. child: RaisedButton(
  207. color: Color(0xffdc3254),
  208. child: Text(
  209. "+关注",
  210. style: TextStyle(
  211. fontSize: 30 * rpx,
  212. color: Colors.white,
  213. letterSpacing: 3 * rpx),
  214. ),
  215. onPressed: () {},
  216. )),
  217. SizedBox(
  218. width: 10 * rpx,
  219. ),
  220. Container(
  221. decoration: BoxDecoration(
  222. borderRadius: BorderRadius.circular(2),
  223. color: Color(0xff3b3c49),
  224. ),
  225. height: 80 * rpx,
  226. child: IconButton(
  227. icon: Center(
  228. child: Icon(
  229. Icons.arrow_drop_down,
  230. color: Colors.white,
  231. size: 50 * rpx,
  232. )),
  233. onPressed: () {},
  234. ),
  235. ),
  236. SizedBox(
  237. width: 30 * rpx,
  238. )
  239. ],
  240. ),
  241. ),
  242. SizedBox(
  243. height: 100 * rpx,
  244. ),
  245. Container(
  246. width: 750 * rpx,
  247. padding: EdgeInsets.symmetric(horizontal: 30 * rpx),
  248. child: Column(
  249. crossAxisAlignment: CrossAxisAlignment.start,
  250. children: <Widget>[
  251. Text(
  252. "马友发",
  253. style: TextStyle(
  254. fontSize: 55 * rpx,
  255. color: Colors.white,
  256. fontWeight: FontWeight.bold),
  257. ),
  258. Text("抖音号:1234567",
  259. style: TextStyle(
  260. fontSize: 27 * rpx,
  261. color: Colors.white,
  262. )),
  263. SizedBox(
  264. height: 15 * rpx,
  265. )
  266. ],
  267. )),
  268. Padding(
  269. padding: EdgeInsets.symmetric(horizontal: 20 * rpx),
  270. child: Divider(
  271. color: Colors.grey[700],
  272. ),
  273. ),
  274. Container(
  275. padding: EdgeInsets.symmetric(horizontal: 20 * rpx),
  276. child: Row(
  277. mainAxisAlignment: MainAxisAlignment.spaceBetween,
  278. children: <Widget>[
  279. Row(
  280. children: <Widget>[
  281. Icon(
  282. Icons.shop,
  283. color: Color(0xffeacd3f),
  284. ),
  285. Text(
  286. "商品橱窗",
  287. style: TextStyle(color: Color(0xffeacd3f)),
  288. )
  289. ],
  290. ),
  291. Icon(Icons.keyboard_arrow_right, color: Color(0xffeacd3f))
  292. ],
  293. )),
  294. Padding(
  295. padding: EdgeInsets.symmetric(horizontal: 20 * rpx),
  296. child: Divider(
  297. color: Colors.grey[700],
  298. ),
  299. ),
  300. Container(
  301. padding: EdgeInsets.symmetric(horizontal: 20 * rpx),
  302. height: 100 * rpx,
  303. width: 750 * rpx,
  304. child: Text(
  305. "爱神的箭发;黑色大力开发哈的\n阿萨德饭还是电话费拉开始的计划发",
  306. style: TextStyle(color: Colors.white, fontSize: 30 * rpx),
  307. ),
  308. ),
  309. Container(
  310. padding: EdgeInsets.symmetric(
  311. horizontal: 20 * rpx, vertical: 10 * rpx),
  312. child: Row(
  313. children: <Widget>[
  314. Tag(
  315. text: "深圳",
  316. ),
  317. Tag(
  318. text: "世界之窗",
  319. ),
  320. Tag(
  321. text: "深圳大学",
  322. )
  323. ],
  324. ),
  325. ),
  326. Container(
  327. padding: EdgeInsets.symmetric(
  328. horizontal: 20 * rpx, vertical: 30 * rpx),
  329. child: Row(
  330. children: <Widget>[
  331. NumWithDesc(
  332. numm: "100.2w",
  333. desc: "获赞",
  334. ),
  335. NumWithDesc(
  336. numm: "15",
  337. desc: "关注",
  338. ),
  339. NumWithDesc(
  340. numm: "10.8w",
  341. desc: "粉丝",
  342. ),
  343. ],
  344. ),
  345. )
  346. ],
  347. ),
  348. Positioned(
  349. top: 250 * rpx + extraPicHeight,
  350. left: 30 * rpx,
  351. child: Container(
  352. decoration: BoxDecoration(
  353. color: Theme.of(context).primaryColor,
  354. borderRadius: BorderRadius.circular(220 * rpx)),
  355. width: 220 * rpx,
  356. height: 220 * rpx,
  357. padding: EdgeInsets.all(10 * rpx),
  358. child: CircleAvatar(
  359. backgroundImage: NetworkImage(
  360. "https://pic2.zhimg.com/v2-a88cd7618933272ca681f86398e6240d_xll.jpg"))),
  361. )
  362. ],
  363. );
  364. }
  365. }
  366. class Tag extends StatelessWidget {
  367. const Tag({Key key, @required this.text}) : super(key: key);
  368. final String text;
  369. @override
  370. Widget build(BuildContext context) {
  371. double rpx = MediaQuery.of(context).size.width / 750;
  372. return Container(
  373. child: Text(
  374. text,
  375. style: TextStyle(fontSize: 26 * rpx, color: Color(0xff64626e)),
  376. ),
  377. color: Color(0xff3b3c49),
  378. padding: EdgeInsets.all(10 * rpx),
  379. margin: EdgeInsets.only(right: 10 * rpx),
  380. );
  381. }
  382. }
  383. class NumWithDesc extends StatelessWidget {
  384. const NumWithDesc({Key key, @required this.numm, @required this.desc})
  385. : super(key: key);
  386. final String numm;
  387. final String desc;
  388. @override
  389. Widget build(BuildContext context) {
  390. double rpx = MediaQuery.of(context).size.width / 750;
  391. double textSize = 35 * rpx;
  392. return Padding(
  393. padding: EdgeInsets.only(right: 20 * rpx),
  394. child: Row(
  395. children: <Widget>[
  396. Text(
  397. numm,
  398. style: TextStyle(
  399. fontSize: textSize,
  400. color: Colors.white,
  401. fontWeight: FontWeight.bold),
  402. ),
  403. SizedBox(
  404. width: 10 * rpx,
  405. ),
  406. Text(desc,
  407. style: TextStyle(fontSize: textSize, color: Color(0xff3b3c49)))
  408. ],
  409. ));
  410. }
  411. }
  412. // import 'package:flutter/material.dart';
  413. // class SelfHomePage extends StatelessWidget {
  414. // const SelfHomePage({Key key}) : super(key: key);
  415. // @override
  416. // Widget build(BuildContext context) {
  417. // return Scaffold(
  418. // body: CustomScrollView(
  419. // physics: ClampingScrollPhysics(),
  420. // slivers: <Widget>[
  421. // SliverAppBar(
  422. // leading: IconButton(
  423. // icon: Icon(Icons.arrow_back),
  424. // onPressed: () {},
  425. // ),
  426. // floating: true,
  427. // pinned: false,
  428. // snap: true,
  429. // expandedHeight: 250,
  430. // flexibleSpace: FlexibleSpaceBar(
  431. // title: Text("This is Sliver App Bar"),
  432. // background: Image.asset("lib/images/temple.jpg",height: 250,fit: BoxFit.fitWidth,),
  433. // ),
  434. // ),
  435. // SliverList(delegate: SliverChildBuilderDelegate((context,index){
  436. // return Container(child: Text("This is item $index",style: TextStyle(fontSize: 20),),color: Colors.redAccent,);
  437. // },))
  438. // ],
  439. // ),
  440. // );
  441. // }
  442. // }