Skip to content

Instantly share code, notes, and snippets.

@engladgut
engladgut / example.dart
Created August 8, 2023 13:04 — forked from PlugFox/example.dart
Flutter Shimmer & Skeleton
void main() => runZonedGuarded<void>(
() => runApp(const App()),
(error, stackTrace) => log('Top level exception $error'),
);
class App extends StatelessWidget {
const App({super.key});
@override
Widget build(BuildContext context) => MaterialApp(