feat: přidat projekt
This commit is contained in:
commit
95b26b4063
42 changed files with 5261 additions and 0 deletions
17
lib/utils/input_decoration.dart
Normal file
17
lib/utils/input_decoration.dart
Normal file
|
@ -0,0 +1,17 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
InputDecoration inputDecoration(String text) {
|
||||
return InputDecoration(
|
||||
labelStyle: const TextStyle(color: Colors.white),
|
||||
label: Text(
|
||||
text,
|
||||
),
|
||||
border: UnderlineInputBorder(
|
||||
borderSide: const BorderSide(color: Colors.black, width: 2.0),
|
||||
borderRadius: BorderRadius.circular(6.0)),
|
||||
focusedBorder: UnderlineInputBorder(
|
||||
borderSide: const BorderSide(color: Color(0xffCA1F3D), width: 2.0),
|
||||
borderRadius: BorderRadius.circular(10.0),
|
||||
),
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue