Created
February 6, 2023 19:12
-
-
Save FlutterWiz/644778e50d7bcfff13170b76a47969fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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