RecommendProvider.dart 2.1 KB

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