mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-18 02:07:43 +00:00
21 lines
691 B
Dart
21 lines
691 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
import 'package:stackwallet/utilities/cfcolors.dart';
|
||
|
import 'package:stackwallet/utilities/text_styles.dart';
|
||
|
|
||
|
InputDecoration standardInputDecoration(
|
||
|
String? labelText, FocusNode textFieldFocusNode) {
|
||
|
return InputDecoration(
|
||
|
labelText: labelText,
|
||
|
fillColor: textFieldFocusNode.hasFocus
|
||
|
? CFColors.textFieldActive
|
||
|
: CFColors.textFieldInactive,
|
||
|
labelStyle: STextStyles.fieldLabel,
|
||
|
hintStyle: STextStyles.fieldLabel,
|
||
|
enabledBorder: InputBorder.none,
|
||
|
focusedBorder: InputBorder.none,
|
||
|
errorBorder: InputBorder.none,
|
||
|
disabledBorder: InputBorder.none,
|
||
|
focusedErrorBorder: InputBorder.none,
|
||
|
);
|
||
|
}
|