Skip to content

Commit

Permalink
main: Remove Flutter logos and use app logo instead
Browse files Browse the repository at this point in the history
  • Loading branch information
tseli0s committed Dec 23, 2023
1 parent cdc239e commit 0348159
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,11 @@ class _HomepageState extends State<Homepage> {
showAboutDialog(
applicationName: "FlText",
applicationVersion: "0.1.0",
applicationIcon: const FlutterLogo(
size: 32,
applicationIcon: SizedBox.fromSize(
size: const Size.square(48),
child: const Image(
image: AssetImage('assets/logo.png'),
),
),
children: [
Text(AppLocalizations.of(context)!.fltextDesc),
Expand All @@ -153,7 +156,6 @@ class _HomepageState extends State<Homepage> {
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
const FlutterLogo(),
TitleText(text: AppLocalizations.of(context)!.welcomeToFltext),
Text(
AppLocalizations.of(context)!.startByEither,
Expand Down

0 comments on commit 0348159

Please sign in to comment.