main function
void
main()
Entry point of the modular example application.
Implementation
void main() {
runApp(
const MaterialApp(
debugShowCheckedModeBanner: false,
home: ModularExampleScreen(),
),
);
}