BottomSheet.dart 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. ScrollController controller=ScrollController();
  9. double rpx = MediaQuery.of(context).size.width / 750;
  10. RecommendProvider provider = Provider.of<RecommendProvider>(context);
  11. List<Reply> replies = List<Reply>();
  12. replies.add(provider.reply);
  13. replies.add(provider.reply);
  14. replies.add(provider.reply);
  15. replies.add(provider.reply);
  16. replies.add(provider.reply);
  17. return SingleChildScrollView(
  18. controller: controller,
  19. child: Column(
  20. mainAxisSize: MainAxisSize.min,
  21. children: [
  22. Container(
  23. // width: 750*rpx,
  24. height: 80 * rpx,
  25. child: ListTile(
  26. leading: Container(
  27. width: 80 * rpx,
  28. ),
  29. title: Container(child: Center(child: Text("当前有100条回复"))),
  30. trailing: IconButton(
  31. icon: Icon(Icons.close),
  32. onPressed: () {},
  33. ),
  34. )),
  35. genReplyList(replies,controller)
  36. ],
  37. ),
  38. );
  39. }
  40. }
  41. genReplyList(List<Reply> replies,ScrollController controller) {
  42. return ListView.builder(
  43. itemCount: replies.length,
  44. controller:controller,
  45. shrinkWrap: true,
  46. itemBuilder: (context, index) {
  47. return ReplyList(reply: replies[index],controller: 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. RecommendProvider provider = Provider.of<RecommendProvider>(context);
  58. double rpx = MediaQuery.of(context).size.width / 750;
  59. return Container(
  60. child: Column(
  61. children: <Widget>[
  62. Row(
  63. crossAxisAlignment: CrossAxisAlignment.start,
  64. children: <Widget>[
  65. Container(
  66. padding: EdgeInsets.all(5 * rpx),
  67. width: 100 * rpx,
  68. height: 100 * rpx,
  69. child: CircleAvatar(
  70. backgroundImage: NetworkImage("${reply.replyMakerAvatar}"),
  71. ),
  72. ),
  73. Container(
  74. width: 550 * rpx,
  75. child: ListTile(
  76. title: Container(
  77. height: 60 * rpx,
  78. child: Text("${reply.replyMakerName}")),
  79. subtitle: Column(
  80. crossAxisAlignment: CrossAxisAlignment.start,
  81. children: [
  82. Container(
  83. child: Text(
  84. "${reply.replyContent}",
  85. maxLines: 2,
  86. overflow: TextOverflow.ellipsis,
  87. )),
  88. ]),
  89. )),
  90. Container(
  91. width: 100 * rpx,
  92. alignment: Alignment.center,
  93. child: IconButton(
  94. icon: Icon(Icons.favorite),
  95. onPressed: () {},
  96. ),
  97. )
  98. ],
  99. ),
  100. Container(
  101. margin: EdgeInsets.only(left: 100*rpx),
  102. child: ListView.builder(
  103. itemCount: 2,
  104. controller: controller,
  105. shrinkWrap: true,
  106. itemBuilder: (context, int) {
  107. return SubTitleList(
  108. rpx: rpx,
  109. afterReply: reply,
  110. );
  111. },
  112. ),
  113. )
  114. ],
  115. ),
  116. );
  117. }
  118. }
  119. class SubTitleList extends StatelessWidget {
  120. const SubTitleList({Key key, this.rpx, this.afterReply}) : super(key: key);
  121. final double rpx;
  122. final Reply afterReply;
  123. @override
  124. Widget build(BuildContext context) {
  125. return Container(
  126. width:550*rpx,
  127. child: Row(
  128. children: <Widget>[
  129. Container(
  130. width: 70 * rpx,
  131. child: CircleAvatar(
  132. backgroundImage: NetworkImage("${afterReply.replyMakerAvatar}"),
  133. ),
  134. ),
  135. Container(
  136. width: 480 * rpx,
  137. child: ListTile(
  138. title: Text(
  139. "${afterReply.replyMakerName}",
  140. maxLines: 1,
  141. overflow: TextOverflow.ellipsis,
  142. ),
  143. subtitle: Text("${afterReply.replyContent}",
  144. maxLines: 2, overflow: TextOverflow.ellipsis),
  145. )),
  146. Container(
  147. width: 100 * rpx,
  148. alignment: Alignment.center,
  149. child: IconButton(
  150. icon: Icon(
  151. Icons.favorite,
  152. color: Colors.grey[300],
  153. ),
  154. onPressed: () {},
  155. ),
  156. )
  157. ],
  158. ),
  159. );
  160. }
  161. }