Skip to content

Commit 8a3676f

Browse files
authored
fix: remove underline border of submission field (#836)
1 parent bcdc8ff commit 8a3676f

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

lib/screens/submit/submit_screen.dart

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -190,10 +190,8 @@ class _SubmitScreenState extends State<SubmitScreen> with ItemActionMixin {
190190
maxLines: 200,
191191
decoration: const InputDecoration(
192192
hintText: 'Text',
193-
focusedBorder: UnderlineInputBorder(
194-
borderSide: BorderSide.none,
195-
),
196-
border: UnderlineInputBorder(borderSide: BorderSide.none),
193+
focusedBorder: .none,
194+
border: .none,
197195
),
198196
onChanged: context.read<SubmitCubit>().onTextChanged,
199197
textCapitalization: TextCapitalization.sentences,

0 commit comments

Comments
 (0)