Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
mobile_scanner
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Navaron Bracke
2024-01-03 17:13:27 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a08dc6d8958e86d6f7c261fa715f6b3a84eda8c2
a08dc6d8
1 parent
6c46a25f
fix small align issue in example app
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
example/lib/main.dart
example/lib/main.dart
View file @
a08dc6d
...
...
@@ -23,8 +23,9 @@ class MyHome extends StatelessWidget {
Widget
build
(
BuildContext
context
)
{
return
Scaffold
(
appBar:
AppBar
(
title:
const
Text
(
'Mobile Scanner Example'
)),
body:
Column
(
mainAxisAlignment:
MainAxisAlignment
.
center
,
body:
Center
(
child:
Column
(
mainAxisAlignment:
MainAxisAlignment
.
spaceAround
,
children:
[
ElevatedButton
(
onPressed:
()
{
...
...
@@ -100,6 +101,7 @@ class MyHome extends StatelessWidget {
),
],
),
),
);
}
}
...
...
Please
register
or
login
to post a comment