final
This commit is contained in:
@@ -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(),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user