Skip to content

Commit ce302f3

Browse files
committed
chore: apply dart format to about_us_screen
1 parent c7331b7 commit ce302f3

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

lib/view/about_us_screen.dart

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,11 @@ class _AboutUsScreenState extends State<AboutUsScreen> {
137137
onTap: () async {
138138
final uri = Uri.parse(appLocalizations.feedbackForm);
139139
if (await canLaunchUrl(uri)) {
140-
await launchUrl(uri);
140+
await launchUrl(uri);
141141
} else {
142-
debugPrint('Could not launch ${appLocalizations.feedbackForm}');
142+
debugPrint(
143+
'Could not launch ${appLocalizations.feedbackForm}',
144+
);
143145
}
144146
},
145147
),
@@ -167,7 +169,8 @@ class _AboutUsScreenState extends State<AboutUsScreen> {
167169
);
168170
} else if (snapshot.hasError) {
169171
logger.e(
170-
"Error getting version information: ${snapshot.error.toString()}");
172+
"Error getting version information: ${snapshot.error.toString()}",
173+
);
171174
return Text(
172175
appLocalizations.error,
173176
style: const TextStyle(fontSize: 15),

0 commit comments

Comments
 (0)