Skip to content

Instantly share code, notes, and snippets.

@alperefesahin
Created February 6, 2023 19:12
Show Gist options
  • Save alperefesahin/644778e50d7bcfff13170b76a47969fe to your computer and use it in GitHub Desktop.
Save alperefesahin/644778e50d7bcfff13170b76a47969fe to your computer and use it in GitHub Desktop.
class AppWidget extends StatelessWidget {
const AppWidget({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Responsive Flutter UI App',
home: ResponsiveLayout(
mobileLayout: MobileChatsPage(),
desktopLayout: DesktopChatsPage(),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment