BottomSheet.dart 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. import 'package:douyin_demo/pages/RecommendPage/FriendList.dart';
  2. import 'package:douyin_demo/providers/AtUserProvider.dart';
  3. import 'package:douyin_demo/providers/RecommendProvider.dart';
  4. import 'package:flutter/material.dart';
  5. import 'package:provider/provider.dart';
  6. class ReplyFullList extends StatelessWidget {
  7. ReplyFullList({Key key,this.pCtx}) : super(key: key);
  8. final BuildContext pCtx;
  9. @override
  10. Widget build(BuildContext context) {
  11. double rpx = MediaQuery.of(context).size.width / 750;
  12. RecommendProvider provider = Provider.of<RecommendProvider>(pCtx);
  13. Reply reply = provider.reply;
  14. List<Reply> replies = <Reply>[];
  15. replies.add(reply);
  16. replies.add(reply);
  17. replies.add(reply);
  18. ScrollController controller = ScrollController();
  19. return Scaffold(
  20. appBar: PreferredSize(
  21. preferredSize: Size.fromHeight(80*rpx),
  22. child: AppBar(
  23. leading: Container(),
  24. elevation:0,
  25. backgroundColor: Colors.grey[50],
  26. actions: <Widget>[
  27. IconButton(
  28. icon: Icon(
  29. Icons.close,
  30. color: Colors.black,
  31. ),
  32. onPressed: () {
  33. Navigator.pop(context);
  34. },
  35. )
  36. ],
  37. title: Text(
  38. "10条评论",
  39. style: TextStyle(color: Colors.grey[700],fontSize: 25*rpx),
  40. ),
  41. // elevation: 1,
  42. )
  43. ),
  44. bottomNavigationBar: SafeArea(
  45. child: BottomReplyBar(pCtx: pCtx,),
  46. ),
  47. body: SingleChildScrollView(
  48. controller: controller,
  49. child: Container(
  50. child: genReplyList(replies, controller),
  51. )));
  52. }
  53. }
  54. class ReplyList extends StatelessWidget {
  55. const ReplyList({Key key, this.reply, this.controller}) : super(key: key);
  56. final Reply reply;
  57. final ScrollController controller;
  58. @override
  59. Widget build(BuildContext context) {
  60. double rpx = MediaQuery.of(context).size.width / 750;
  61. List<Reply> replies = <Reply>[];
  62. replies.add(reply);
  63. replies.add(reply);
  64. replies.add(reply);
  65. return Container(
  66. child: Column(
  67. mainAxisSize: MainAxisSize.min,
  68. children: <Widget>[
  69. Row(
  70. children: <Widget>[
  71. Container(
  72. width: 100 * rpx,
  73. height: 100 * rpx,
  74. padding: EdgeInsets.all(10 * rpx),
  75. child: CircleAvatar(
  76. backgroundImage: NetworkImage("${reply.replyMakerAvatar}"),
  77. ),
  78. ),
  79. Container(
  80. width: 550 * rpx,
  81. child: ListTile(
  82. title: Text("${reply.replyMakerName}"),
  83. subtitle: Text(
  84. "${reply.replyContent}",
  85. maxLines: 2,
  86. overflow: TextOverflow.ellipsis,
  87. ),
  88. ),
  89. ),
  90. Container(
  91. width: 100 * rpx,
  92. child: IconButton(
  93. onPressed: () {},
  94. icon: Icon(
  95. Icons.favorite,
  96. color: Colors.grey[300],
  97. ),
  98. ),
  99. )
  100. ],
  101. ),
  102. genAfterReplyList(replies, controller)
  103. ],
  104. ),
  105. );
  106. }
  107. }
  108. class AfterReply extends StatelessWidget {
  109. const AfterReply({Key key, this.afterReply}) : super(key: key);
  110. final Reply afterReply;
  111. @override
  112. Widget build(BuildContext context) {
  113. double rpx = MediaQuery.of(context).size.width / 750;
  114. return Container(
  115. child: Column(
  116. mainAxisSize: MainAxisSize.min,
  117. children: <Widget>[
  118. Row(
  119. children: <Widget>[
  120. Container(
  121. width: 100 * rpx,
  122. ),
  123. Container(
  124. width: 550 * rpx,
  125. child: Row(
  126. crossAxisAlignment: CrossAxisAlignment.start,
  127. children: <Widget>[
  128. Container(
  129. width: 70 * rpx,
  130. height: 70 * rpx,
  131. margin: EdgeInsets.only(top: 15 * rpx),
  132. padding: EdgeInsets.all(10 * rpx),
  133. child: CircleAvatar(
  134. backgroundImage:
  135. NetworkImage("${afterReply.replyMakerAvatar}"),
  136. ),
  137. ),
  138. Container(
  139. width: 480 * rpx,
  140. child: ListTile(
  141. title: Text("${afterReply.replyMakerName}"),
  142. subtitle: RichText(
  143. text: TextSpan(
  144. text: "${afterReply.replyContent}",
  145. style: TextStyle(color: Colors.grey[500]),
  146. children: [
  147. TextSpan(text: " ${afterReply.whenReplied}")
  148. ]),
  149. ),
  150. ),
  151. )
  152. ],
  153. ),
  154. ),
  155. Container(
  156. width: 100 * rpx,
  157. child: IconButton(
  158. onPressed: () {},
  159. icon: Icon(
  160. Icons.favorite,
  161. color: Colors.grey[300],
  162. ),
  163. ),
  164. )
  165. ],
  166. )
  167. ],
  168. ),
  169. );
  170. }
  171. }
  172. genReplyList(List<Reply> replies, ScrollController controller) {
  173. return ListView.builder(
  174. shrinkWrap: true,
  175. controller: controller,
  176. itemCount: replies.length,
  177. itemBuilder: (context, index) {
  178. return ReplyList(
  179. reply: replies[index],
  180. controller: controller,
  181. );
  182. },
  183. );
  184. }
  185. genAfterReplyList(List<Reply> replies, ScrollController controller) {
  186. return ListView.builder(
  187. shrinkWrap: true,
  188. controller: controller,
  189. itemCount: replies.length <= 2 ? replies.length : 2,
  190. itemBuilder: (context, index) {
  191. return AfterReply(
  192. afterReply: replies[index],
  193. );
  194. },
  195. );
  196. }
  197. class BottomReplyBar extends StatelessWidget {
  198. const BottomReplyBar({Key key,this.pCtx}) : super(key: key);
  199. final BuildContext pCtx;
  200. @override
  201. Widget build(BuildContext context) {
  202. TextEditingController _controller=TextEditingController();
  203. double toBottom=MediaQuery.of(context).viewInsets.bottom;
  204. double rpx=MediaQuery.of(context).size.width/750;
  205. return Container(
  206. padding: EdgeInsets.only(bottom: toBottom),
  207. decoration: BoxDecoration(border: Border(top: BorderSide(color: Colors.grey[200],width: 1))),
  208. child: Row(children: <Widget>[
  209. Expanded(
  210. child: Container(
  211. padding: EdgeInsets.only(left: 30*rpx),
  212. // width: 600*rspx,
  213. child: TextField(controller: _controller,decoration: InputDecoration(hintText: "留下你的精彩评论",border: InputBorder.none),),
  214. )
  215. ),
  216. IconButton(icon: Icon(Icons.email,color: Colors.grey[500],size: 50*rpx,),onPressed: (){showAtFriendPage(pCtx);},),
  217. IconButton(icon: Icon(Icons.face,color: Colors.grey[500],size: 50*rpx),onPressed: (){},),
  218. SizedBox(width: 20*rpx,)
  219. ],),
  220. );
  221. }
  222. }
  223. showAtFriendPage(BuildContext context){
  224. Navigator.of(context).push(MaterialPageRoute(
  225. builder: (BuildContext context) {
  226. return MultiProvider(
  227. providers: [ChangeNotifierProvider(builder:(context)=>AtUserProvider())],
  228. child: AtFriendPage()
  229. );
  230. },
  231. fullscreenDialog: true
  232. ));
  233. }