Skip to content

Commit

Permalink
Make camera capture button slightly bigger
Browse files Browse the repository at this point in the history
  • Loading branch information
proninyaroslav committed Sep 20, 2024
1 parent 607b551 commit 1fb4f7f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"name": "Flutter Debug",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
"flutterMode": "debug"
// TODO: https://github.com/flutter/flutter/issues/146890#issuecomment-2212409188
"args": ["--enable-software-rendering"]
// "args": ["--enable-software-rendering"]
},
{
"name": "Flutter Release",
Expand Down
8 changes: 4 additions & 4 deletions lib/ui/camera_picker/components/camera_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -567,12 +567,12 @@ class _TakePhotoButton extends StatelessWidget {
child: InkWell(
onTap: onTap,
child: SizedBox(
width: 80.0,
height: 80.0,
width: 90.0,
height: 90.0,
child: Center(
child: Container(
width: 50.0,
height: 50.0,
width: 65.0,
height: 65.0,
decoration: MultiBorderDecoration(
borderSides: [
BorderSide(
Expand Down

0 comments on commit 1fb4f7f

Please sign in to comment.