BottomSheet.dart 7.3 KB

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