mirror of
https://github.com/mitchell/selfpass.git
synced 2025-12-16 05:57:21 +00:00
Change client style to a dark brightness
This commit is contained in:
parent
633945b1d1
commit
6315d5a9bc
4 changed files with 19 additions and 4 deletions
|
|
@ -19,10 +19,12 @@ class TappableTextList extends StatelessWidget {
|
|||
widgets.add(GestureDetector(
|
||||
onTap: handleOnTap,
|
||||
child: Container(
|
||||
padding: const EdgeInsets.symmetric(vertical: 15.0),
|
||||
padding: const EdgeInsets.symmetric(vertical: 12.5),
|
||||
decoration: const BoxDecoration(
|
||||
border: Border(
|
||||
bottom: BorderSide(color: CupertinoColors.lightBackgroundGray),
|
||||
bottom: BorderSide(
|
||||
color: Color(0xFF1e1d1e),
|
||||
),
|
||||
),
|
||||
),
|
||||
child: Text(text, textAlign: TextAlign.center),
|
||||
|
|
|
|||
|
|
@ -34,8 +34,9 @@ class TextField extends StatelessWidget {
|
|||
return Container(
|
||||
padding: const EdgeInsets.symmetric(vertical: 5.0),
|
||||
child: CupertinoTextField(
|
||||
style: TextStyle(color: CupertinoColors.darkBackgroundGray),
|
||||
decoration: BoxDecoration(
|
||||
border: Border.all(color: CupertinoColors.black),
|
||||
color: CupertinoColors.lightBackgroundGray,
|
||||
borderRadius: const BorderRadius.all(Radius.circular(5.0)),
|
||||
),
|
||||
clearButtonMode: clearButtonMode,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue