Set application icons
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
2025-07-03 23:00:24 +02:00
parent 8d3b17dcd1
commit c878c7f327
36 changed files with 76 additions and 136 deletions

View File

@@ -54,7 +54,13 @@ class _LoginChoice extends StatelessWidget {
EdgeInsetsGeometry.symmetric(vertical: 20.0, horizontal: 30.0),
),
),
child: Row(children: [Icon(icon, size: 25.0), Gutter(), Text(label)]),
child: Row(
children: [
Icon(icon, size: 25.0),
Gutter(),
Flexible(child: Text(label)),
],
),
);
}
}