Skip to content

Commit

Permalink
Improve layout for light mode Sharecode textfield (#1764)
Browse files Browse the repository at this point in the history
| Before | After |
|--------|--------|
| ![Simulator Screenshot - iPhone 16 - 2024-10-14 at 22 15
17](https://github.com/user-attachments/assets/c2747696-280f-4a1d-8b73-c76a71aee2a0)
| ![Simulator Screenshot - iPhone 16 - 2024-10-14 at 22 15
04](https://github.com/user-attachments/assets/2fa7aef2-267c-4116-8081-1e58eb5edc4f)
|
  • Loading branch information
nilsreichardt authored Oct 15, 2024
1 parent 2a07153 commit 09eee42
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/lib/groups/group_join/widgets/group_join_text_field.dart
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,19 @@ class _GroupJoinTextFieldState extends State<GroupJoinTextField> {
cursorColor: Colors.white,
decoration: InputDecoration(
labelText: 'Sharecode',
labelStyle: const TextStyle(color: Colors.white),
focusedBorder: Theme.of(context)
.inputDecorationTheme
.focusedBorder
?.copyWith(
borderSide: const BorderSide(
color: Colors.white,
),
),
hintText: "z.B. Qb32vF",
hintStyle: Theme.of(context).isDarkTheme
? null
: const TextStyle(color: Colors.black54),
suffixIcon: Padding(
padding: const EdgeInsets.only(right: 6),
child: IconButton(
Expand Down

0 comments on commit 09eee42

Please sign in to comment.