RecommendProvider.dart 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. // import 'package:flutter/foundation.dart';
  2. import 'package:provider/provider.dart';
  3. import 'package:flutter/material.dart';
  4. class RecommendProvider with ChangeNotifier {
  5. bool ifShowBottom=true;
  6. double screenHeight;
  7. MainInfo mainInfo = MainInfo(
  8. avatarUrl:
  9. "https://pic2.zhimg.com/v2-a88cd7618933272ca681f86398e6240d_xll.jpg",
  10. content:
  11. "奥斯卡答复哈士大夫哈师大发输电和健康阿萨德鸿福路口氨基酸的鸿福路口啊,奥斯卡答复哈士大夫哈师大发输电和健康阿萨德鸿福路口氨基酸的鸿福路口啊",
  12. favCount: 109,
  13. replyCount: 212,
  14. shareCount: 317,
  15. userName: "马有发",
  16. videoPath: "lib/images/pingguo.jpeg",
  17. desc: "马友发做的一个有意思的模拟抖音的小App,用的Flutter哦~",
  18. ifFaved: false);
  19. Reply reply = Reply(
  20. ifFaved: true,
  21. afterReplies: List<Reply>(),
  22. replyContent: "真可爱,真好看,真厉害~真可爱,真好看,真厉害~",
  23. replyMakerAvatar: "https://pic2.zhimg.com/v2-a88cd7618933272ca681f86398e6240d_xll.jpg",
  24. replyMakerName: "ABC",
  25. whenReplied: "3小时前"
  26. );
  27. setScreenHeight(height){
  28. screenHeight=height;
  29. notifyListeners();
  30. }
  31. hideBottomBar(){
  32. ifShowBottom=false;
  33. notifyListeners();
  34. }
  35. tapFav() {
  36. mainInfo.ifFaved = !mainInfo.ifFaved;
  37. if (mainInfo.ifFaved) {
  38. mainInfo.favCount += 1;
  39. } else {
  40. mainInfo.favCount -= 1;
  41. }
  42. notifyListeners();
  43. }
  44. }
  45. class MainInfo {
  46. String avatarUrl;
  47. String userName;
  48. String content;
  49. int favCount;
  50. int replyCount;
  51. int shareCount;
  52. String videoPath;
  53. String desc;
  54. bool ifFaved;
  55. MainInfo(
  56. {this.avatarUrl,
  57. this.content,
  58. this.favCount,
  59. this.replyCount,
  60. this.shareCount,
  61. this.userName,
  62. this.videoPath,
  63. this.desc,
  64. this.ifFaved});
  65. }
  66. class Reply {
  67. String replyMakerName;
  68. String replyMakerAvatar;
  69. String replyContent;
  70. String whenReplied;
  71. bool ifFaved;
  72. List<Reply> afterReplies;
  73. Reply(
  74. {this.ifFaved,
  75. this.afterReplies,
  76. this.replyContent,
  77. this.replyMakerAvatar,
  78. this.replyMakerName,
  79. this.whenReplied});
  80. }