Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Correcting typo on styleFrom colors parameters
  • Loading branch information
Franreno committed Jul 21, 2023
commit 2d40a5448d7bbc459b7032ee1acdecfbe7510bce
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ class OpenImagePage extends StatelessWidget {
children: <Widget>[
ElevatedButton(
style: ElevatedButton.styleFrom(
backgroundColors: Colors.blue,
foregroundColors: Colors.white,
backgroundColor: Colors.blue,
foregroundColor: Colors.white,
),
child: const Text('Press to open an image file(png, jpg)'),
onPressed: () => _openImageFile(context),
Expand Down