This commit is contained in:
2026-07-12 04:33:48 +08:00
parent f8a90ad305
commit e7ce0f7bae
151 changed files with 2765 additions and 2947 deletions

View File

@@ -35,10 +35,10 @@ class MyCards extends StatelessWidget {
return ResponsiveBuilder(
builder: (context, sizingInformation) =>
ScreenTypeLayout(
mobile: MobileMyCards(),
tablet: DesktopMyCards(),
desktop: DesktopMyCards(),
ScreenTypeLayout.builder(
mobile: (context) => MobileMyCards(),
tablet: (context) => DesktopMyCards(),
desktop: (context) => DesktopMyCards(),
),
);
}