FriendList.dart 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. import 'package:douyin_demo/providers/AtUserProvider.dart';
  2. import 'package:flutter/material.dart';
  3. import 'package:provider/provider.dart';
  4. import 'package:sticky_headers/sticky_headers.dart';
  5. class AtFriendPage extends StatelessWidget {
  6. const AtFriendPage({Key key}) : super(key: key);
  7. @override
  8. Widget build(BuildContext context) {
  9. ScrollController controller = ScrollController();
  10. double rpx = MediaQuery.of(context).size.width / 750;
  11. AtUserProvider provider = Provider.of<AtUserProvider>(context);
  12. // AtUserProvider provider = Provider.of<AtUserProvider>(context);
  13. List<String> groupList = provider.groupList;
  14. return provider != null
  15. ? Scaffold(
  16. backgroundColor: Color(0xff121319),
  17. appBar: AppBar(
  18. backgroundColor: Color(0xff121319),
  19. leading: Container(
  20. width: 80 * rpx,
  21. child: IconButton(
  22. icon: Icon(Icons.close),
  23. onPressed: () {
  24. Navigator.pop(context);
  25. },
  26. )),
  27. title: Text("@好友"),
  28. bottom: PreferredSize(
  29. preferredSize: Size.fromHeight(80 * rpx),
  30. child: Container(
  31. margin: EdgeInsets.symmetric(horizontal: 20 * rpx),
  32. decoration: BoxDecoration(color: Colors.grey[700]),
  33. padding: EdgeInsets.symmetric(horizontal: 20 * rpx),
  34. child: TextField(
  35. decoration: InputDecoration(
  36. icon: Icon(
  37. Icons.search,
  38. color: Colors.grey[500],
  39. ),
  40. hintText: "搜索用户备注或名字",
  41. hintStyle: TextStyle(
  42. color: Colors.grey[500],
  43. )),
  44. ),
  45. ),
  46. )),
  47. body: ListView.builder(
  48. shrinkWrap: true,
  49. controller: controller,
  50. itemCount: groupList.length,
  51. itemBuilder: (BuildContext context, int index) {
  52. return StickyHeader(
  53. header: Container(
  54. width: MediaQuery.of(context).size.width,
  55. padding:EdgeInsets.only(left: 20*rpx) ,
  56. height: 50,
  57. decoration: BoxDecoration(color: Color(0xff121319)),
  58. alignment: Alignment.centerLeft,
  59. child: Text(
  60. groupList[index].toString(),
  61. style: TextStyle(color: Colors.white, fontSize: 35*rpx),
  62. ),
  63. ),
  64. content: genContentList(
  65. provider.result[provider.groupList[index]],
  66. context,
  67. controller),
  68. );
  69. },
  70. ),
  71. )
  72. : Scaffold();
  73. }
  74. }
  75. genUserList(context, controller) {
  76. AtUserProvider provider = Provider.of<AtUserProvider>(context);
  77. List<String> groupList = provider.groupList;
  78. return ListView.builder(
  79. shrinkWrap: true,
  80. controller: controller,
  81. itemCount: groupList.length,
  82. itemBuilder: (BuildContext context, int index) {
  83. return StickyHeader(
  84. header: Container(
  85. width: MediaQuery.of(context).size.width,
  86. height: 50,
  87. decoration: BoxDecoration(color: Colors.black),
  88. child: Text(
  89. groupList[index].toString(),
  90. style: TextStyle(color: Colors.white, fontSize: 20),
  91. ),
  92. ),
  93. content: genContentList(
  94. provider.result[provider.groupList[index]], context, controller),
  95. );
  96. },
  97. );
  98. }
  99. genContentList(
  100. List<dynamic> friends, BuildContext context, ScrollController controller) {
  101. double rpx = MediaQuery.of(context).size.width / 750;
  102. return ListView.builder(
  103. shrinkWrap: true,
  104. controller: controller,
  105. itemCount: friends.length,
  106. itemBuilder: (BuildContext context, int index) {
  107. return Container(
  108. decoration: BoxDecoration(color: Color(0xff121319)),
  109. height: 130 * rpx,
  110. child: Row(
  111. children: <Widget>[
  112. Container(
  113. padding: EdgeInsets.all(15 * rpx),
  114. width: 100 * rpx,
  115. height: 100 * rpx,
  116. child: CircleAvatar(
  117. backgroundImage: NetworkImage(friends[index]["avatarUrl"]),
  118. ),
  119. ),
  120. Container(
  121. width: 450 * rpx,
  122. child: friends[index]["desc"].toString().length > 0
  123. ? Column(
  124. crossAxisAlignment: CrossAxisAlignment.start,
  125. mainAxisAlignment: MainAxisAlignment.center,
  126. children: <Widget>[
  127. Container(
  128. child: Text(
  129. friends[index]["userName"],
  130. style: TextStyle(
  131. fontSize: 32 * rpx, color: Colors.white),
  132. maxLines: 1,
  133. overflow: TextOverflow.ellipsis,
  134. ),
  135. ),
  136. Container(
  137. child: Text(
  138. friends[index]["desc"],
  139. style: TextStyle(color: Colors.grey[500]),
  140. maxLines: 1,
  141. overflow: TextOverflow.ellipsis,
  142. ),
  143. ),
  144. ],
  145. )
  146. : Container(
  147. child: Text(
  148. friends[index]["userName"],
  149. style: TextStyle(
  150. fontSize: 32 * rpx, color: Colors.white),
  151. maxLines: 1,
  152. overflow: TextOverflow.ellipsis,
  153. ),
  154. ),
  155. ),
  156. Container(
  157. width: 200 * rpx,
  158. child: Icon(
  159. Icons.search,
  160. color: Colors.grey[500],
  161. ),
  162. )
  163. ],
  164. ));
  165. },
  166. );
  167. }