Skip to content

Commit

Permalink
fix emojies and notice
Browse files Browse the repository at this point in the history
  • Loading branch information
paoloose committed Oct 13, 2024
1 parent 412d942 commit 56b6610
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/features/core/alerts/simple_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class SimpleAppDialog extends ConsumerWidget {
constraints: BoxConstraints(
minHeight: constraints.maxHeight * 0.20,
maxHeight: 230,
minWidth: double.infinity,
maxWidth: 500,
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
Expand Down
16 changes: 15 additions & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,21 @@
</script>

<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport">
<script src="flutter_bootstrap.js" async></script>
<script async>
{{flutter_js}}
{{flutter_build_config}}

// Customize the app initialization process
_flutter.loader.load({
onEntrypointLoaded: async function(engineInitializer) {
const appRunner = await engineInitializer.initializeEngine({
useColorEmoji: true
});

await appRunner.runApp();
}
});
</script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDRcs9q7McYShBakc4mwWAAygj-mxZ_nt8"></script>
</head>
<body>
Expand Down

0 comments on commit 56b6610

Please sign in to comment.