BottomSheet.dart 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  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. const 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 = List<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 = List<Reply>();
  62. replies.add(reply);
  63. replies.add(reply);
  64. replies.add(reply);
  65. // RecommendProvider provider=Provider.of<RecommendProvider>(context);
  66. return Container(
  67. child: Column(
  68. mainAxisSize: MainAxisSize.min,
  69. children: <Widget>[
  70. Row(
  71. children: <Widget>[
  72. Container(
  73. width: 100 * rpx,
  74. height: 100 * rpx,
  75. padding: EdgeInsets.all(10 * rpx),
  76. child: CircleAvatar(
  77. backgroundImage: NetworkImage("${reply.replyMakerAvatar}"),
  78. ),
  79. ),
  80. Container(
  81. width: 550 * rpx,
  82. child: ListTile(
  83. title: Text("${reply.replyMakerName}"),
  84. subtitle: Text(
  85. "${reply.replyContent}",
  86. maxLines: 2,
  87. overflow: TextOverflow.ellipsis,
  88. ),
  89. ),
  90. ),
  91. Container(
  92. width: 100 * rpx,
  93. child: IconButton(
  94. onPressed: () {},
  95. icon: Icon(
  96. Icons.favorite,
  97. color: Colors.grey[300],
  98. ),
  99. ),
  100. )
  101. ],
  102. ),
  103. genAfterReplyList(replies, controller)
  104. ],
  105. ),
  106. );
  107. }
  108. }
  109. class AfterReply extends StatelessWidget {
  110. const AfterReply({Key key, this.afterReply}) : super(key: key);
  111. final Reply afterReply;
  112. @override
  113. Widget build(BuildContext context) {
  114. double rpx = MediaQuery.of(context).size.width / 750;
  115. return Container(
  116. child: Column(
  117. mainAxisSize: MainAxisSize.min,
  118. children: <Widget>[
  119. Row(
  120. children: <Widget>[
  121. Container(
  122. width: 100 * rpx,
  123. ),
  124. Container(
  125. width: 550 * rpx,
  126. child: Row(
  127. crossAxisAlignment: CrossAxisAlignment.start,
  128. children: <Widget>[
  129. Container(
  130. width: 70 * rpx,
  131. height: 70 * rpx,
  132. margin: EdgeInsets.only(top: 15 * rpx),
  133. padding: EdgeInsets.all(10 * rpx),
  134. child: CircleAvatar(
  135. backgroundImage:
  136. NetworkImage("${afterReply.replyMakerAvatar}"),
  137. ),
  138. ),
  139. Container(
  140. width: 480 * rpx,
  141. child: ListTile(
  142. title: Text("${afterReply.replyMakerName}"),
  143. subtitle: RichText(
  144. text: TextSpan(
  145. text: "${afterReply.replyContent}",
  146. style: TextStyle(color: Colors.grey[500]),
  147. children: [
  148. TextSpan(text: " ${afterReply.whenReplied}")
  149. ]),
  150. ),
  151. // Text(
  152. // "${afterReply.replyContent}",
  153. // maxLines: 2,
  154. // overflow: TextOverflow.ellipsis,
  155. // ),
  156. ),
  157. )
  158. ],
  159. ),
  160. ),
  161. Container(
  162. width: 100 * rpx,
  163. child: IconButton(
  164. onPressed: () {},
  165. icon: Icon(
  166. Icons.favorite,
  167. color: Colors.grey[300],
  168. ),
  169. ),
  170. )
  171. ],
  172. )
  173. ],
  174. ),
  175. );
  176. }
  177. }
  178. genReplyList(List<Reply> replies, ScrollController controller) {
  179. return ListView.builder(
  180. shrinkWrap: true,
  181. controller: controller,
  182. itemCount: replies.length,
  183. itemBuilder: (context, index) {
  184. return ReplyList(
  185. reply: replies[index],
  186. controller: controller,
  187. );
  188. },
  189. );
  190. }
  191. genAfterReplyList(List<Reply> replies, ScrollController controller) {
  192. return ListView.builder(
  193. shrinkWrap: true,
  194. controller: controller,
  195. itemCount: replies.length <= 2 ? replies.length : 2,
  196. itemBuilder: (context, index) {
  197. return AfterReply(
  198. afterReply: replies[index],
  199. );
  200. },
  201. );
  202. }
  203. class BottomReplyBar extends StatelessWidget {
  204. const BottomReplyBar({Key key,this.pCtx}) : super(key: key);
  205. final BuildContext pCtx;
  206. @override
  207. Widget build(BuildContext context) {
  208. TextEditingController _controller=TextEditingController();
  209. double toBottom=MediaQuery.of(context).viewInsets.bottom;
  210. double rpx=MediaQuery.of(context).size.width/750;
  211. return Container(
  212. padding: EdgeInsets.only(bottom: toBottom),
  213. decoration: BoxDecoration(border: Border(top: BorderSide(color: Colors.grey[200],width: 1))),
  214. child: Row(children: <Widget>[
  215. Expanded(
  216. child: Container(
  217. padding: EdgeInsets.only(left: 30*rpx),
  218. // width: 600*rspx,
  219. child: TextField(controller: _controller,decoration: InputDecoration(hintText: "留下你的精彩评论",border: InputBorder.none),),
  220. )
  221. ),
  222. IconButton(icon: Icon(Icons.email,color: Colors.grey[500],size: 50*rpx,),onPressed: (){showAtFriendPage(pCtx);},),
  223. IconButton(icon: Icon(Icons.face,color: Colors.grey[500],size: 50*rpx),onPressed: (){},),
  224. SizedBox(width: 20*rpx,)
  225. ],),
  226. );
  227. }
  228. }
  229. showAtFriendPage(BuildContext context){
  230. Navigator.of(context).push(new MaterialPageRoute(
  231. builder: (BuildContext context) {
  232. return MultiProvider(
  233. providers: [ChangeNotifierProvider(builder:(context)=>AtUserProvider())],
  234. child: AtFriendPage()
  235. );
  236. },
  237. fullscreenDialog: true
  238. ));
  239. }