Update code

This commit is contained in:
2024-02-08 16:12:45 +08:00
parent 91144bf8f1
commit f47d3b8810
38 changed files with 554 additions and 211 deletions

View File

@@ -4,8 +4,7 @@ class ScrollParent extends StatelessWidget {
final ScrollController controller;
final Widget child;
const ScrollParent({Key? key, required this.controller, required this.child})
: super(key: key);
const ScrollParent({super.key, required this.controller, required this.child});
@override
Widget build(BuildContext context) {