BottomSheet.dart 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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 SingleChildScrollView(
  17. controller: controller,
  18. child: Container(
  19. child: Column(
  20. mainAxisSize: MainAxisSize.min,
  21. children: <Widget>[
  22. Container(
  23. height: 80 * rpx,
  24. child: ListTile(
  25. leading: Container(
  26. width: 10 * rpx,
  27. ),
  28. trailing: IconButton(
  29. icon: Icon(Icons.close),
  30. onPressed: () {},
  31. ),
  32. title: Center(child: Text("10条评论")),
  33. ),
  34. ),
  35. genReplyList(replies, controller)
  36. ],
  37. ),
  38. ));
  39. }
  40. }
  41. class ReplyList extends StatelessWidget {
  42. const ReplyList({Key key, this.reply, this.controller}) : super(key: key);
  43. final Reply reply;
  44. final ScrollController controller;
  45. @override
  46. Widget build(BuildContext context) {
  47. double rpx = MediaQuery.of(context).size.width / 750;
  48. List<Reply> replies = List<Reply>();
  49. replies.add(reply);
  50. replies.add(reply);
  51. replies.add(reply);
  52. // RecommendProvider provider=Provider.of<RecommendProvider>(context);
  53. return Container(
  54. child: Column(
  55. mainAxisSize: MainAxisSize.min,
  56. children: <Widget>[
  57. Row(
  58. children: <Widget>[
  59. Container(
  60. width: 100 * rpx,
  61. height: 100 * rpx,
  62. padding: EdgeInsets.all(10 * rpx),
  63. child: CircleAvatar(
  64. backgroundImage: NetworkImage("${reply.replyMakerAvatar}"),
  65. ),
  66. ),
  67. Container(
  68. width: 550 * rpx,
  69. child: ListTile(
  70. title: Text("${reply.replyMakerName}"),
  71. subtitle: Text(
  72. "${reply.replyContent}",
  73. maxLines: 2,
  74. overflow: TextOverflow.ellipsis,
  75. ),
  76. ),
  77. ),
  78. Container(
  79. width: 100 * rpx,
  80. child: IconButton(
  81. onPressed: () {},
  82. icon: Icon(
  83. Icons.favorite,
  84. color: Colors.grey[300],
  85. ),
  86. ),
  87. )
  88. ],
  89. ),
  90. genAfterReplyList(replies, controller)
  91. ],
  92. ),
  93. );
  94. }
  95. }
  96. class AfterReply extends StatelessWidget {
  97. const AfterReply({Key key, this.afterReply}) : super(key: key);
  98. final Reply afterReply;
  99. @override
  100. Widget build(BuildContext context) {
  101. double rpx = MediaQuery.of(context).size.width / 750;
  102. return Container(
  103. child: Column(
  104. mainAxisSize: MainAxisSize.min,
  105. children: <Widget>[
  106. Row(
  107. children: <Widget>[
  108. Container(
  109. width: 100 * rpx,
  110. ),
  111. Container(
  112. width: 550 * rpx,
  113. child: Row(
  114. crossAxisAlignment: CrossAxisAlignment.start,
  115. children: <Widget>[
  116. Container(
  117. width: 70 * rpx,
  118. height: 70 * rpx,
  119. margin: EdgeInsets.only(top: 15 * rpx),
  120. padding: EdgeInsets.all(10 * rpx),
  121. child: CircleAvatar(
  122. backgroundImage:
  123. NetworkImage("${afterReply.replyMakerAvatar}"),
  124. ),
  125. ),
  126. Container(
  127. width: 480 * rpx,
  128. child: ListTile(
  129. title: Text("${afterReply.replyMakerName}"),
  130. subtitle: RichText(
  131. text: TextSpan(
  132. text: "${afterReply.replyContent}",
  133. style: TextStyle(color: Colors.grey[500]),
  134. children: [
  135. TextSpan(text: " ${afterReply.whenReplied}")
  136. ]
  137. ),
  138. ),
  139. // Text(
  140. // "${afterReply.replyContent}",
  141. // maxLines: 2,
  142. // overflow: TextOverflow.ellipsis,
  143. // ),
  144. ),
  145. )
  146. ],
  147. ),
  148. ),
  149. Container(
  150. width: 100 * rpx,
  151. child: IconButton(
  152. onPressed: () {},
  153. icon: Icon(
  154. Icons.favorite,
  155. color: Colors.grey[300],
  156. ),
  157. ),
  158. )
  159. ],
  160. )
  161. ],
  162. ),
  163. );
  164. }
  165. }
  166. genReplyList(List<Reply> replies, ScrollController controller) {
  167. return ListView.builder(
  168. shrinkWrap: true,
  169. controller: controller,
  170. itemCount: replies.length,
  171. itemBuilder: (context, index) {
  172. return ReplyList(
  173. reply: replies[index],
  174. controller: controller,
  175. );
  176. },
  177. );
  178. }
  179. genAfterReplyList(List<Reply> replies, ScrollController controller) {
  180. return ListView.builder(
  181. shrinkWrap: true,
  182. controller: controller,
  183. itemCount: replies.length <= 2 ? replies.length : 2,
  184. itemBuilder: (context, index) {
  185. return AfterReply(
  186. afterReply: replies[index],
  187. );
  188. },
  189. );
  190. }