mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
mac desktop keyboard type crash fix
This commit is contained in:
parent
c42ea26a3b
commit
4b58f3ec60
6 changed files with 44 additions and 28 deletions
|
@ -409,8 +409,9 @@ class _GenerateUriQrCodeViewState extends State<GenerateUriQrCodeView> {
|
|||
height: 1.8,
|
||||
)
|
||||
: STextStyles.field(context),
|
||||
keyboardType:
|
||||
const TextInputType.numberWithOptions(decimal: true),
|
||||
keyboardType: Util.isDesktop
|
||||
? null
|
||||
: const TextInputType.numberWithOptions(decimal: true),
|
||||
onChanged: (_) => setState(() {}),
|
||||
decoration: standardInputDecoration(
|
||||
"Amount",
|
||||
|
|
|
@ -1111,7 +1111,9 @@ class _SendViewState extends ConsumerState<SendView> {
|
|||
const Key("amountInputFieldCryptoTextFieldKey"),
|
||||
controller: cryptoAmountController,
|
||||
focusNode: _cryptoFocus,
|
||||
keyboardType: const TextInputType.numberWithOptions(
|
||||
keyboardType: Util.isDesktop
|
||||
? null
|
||||
: const TextInputType.numberWithOptions(
|
||||
signed: false,
|
||||
decimal: true,
|
||||
),
|
||||
|
@ -1168,8 +1170,9 @@ class _SendViewState extends ConsumerState<SendView> {
|
|||
const Key("amountInputFieldFiatTextFieldKey"),
|
||||
controller: baseAmountController,
|
||||
focusNode: _baseFocus,
|
||||
keyboardType:
|
||||
const TextInputType.numberWithOptions(
|
||||
keyboardType: Util.isDesktop
|
||||
? null
|
||||
: const TextInputType.numberWithOptions(
|
||||
signed: false,
|
||||
decimal: true,
|
||||
),
|
||||
|
|
|
@ -391,7 +391,8 @@ class _EpiBoxInfoFormState extends ConsumerState<EpicBoxInfoForm> {
|
|||
enableSuggestions: Util.isDesktop ? false : true,
|
||||
controller: portController,
|
||||
decoration: const InputDecoration(hintText: "Port"),
|
||||
keyboardType: const TextInputType.numberWithOptions(),
|
||||
keyboardType:
|
||||
Util.isDesktop ? null : const TextInputType.numberWithOptions(),
|
||||
),
|
||||
const SizedBox(
|
||||
height: 8,
|
||||
|
|
|
@ -739,7 +739,9 @@ class _TransactionSearchViewState
|
|||
controller: _amountTextEditingController,
|
||||
focusNode: amountTextFieldFocusNode,
|
||||
onChanged: (_) => setState(() {}),
|
||||
keyboardType: const TextInputType.numberWithOptions(
|
||||
keyboardType: Util.isDesktop
|
||||
? null
|
||||
: const TextInputType.numberWithOptions(
|
||||
signed: false,
|
||||
decimal: true,
|
||||
),
|
||||
|
|
|
@ -1002,7 +1002,9 @@ class _DesktopSendState extends ConsumerState<DesktopSend> {
|
|||
key: const Key("amountInputFieldCryptoTextFieldKey"),
|
||||
controller: cryptoAmountController,
|
||||
focusNode: _cryptoFocus,
|
||||
keyboardType: const TextInputType.numberWithOptions(
|
||||
keyboardType: Util.isDesktop
|
||||
? null
|
||||
: const TextInputType.numberWithOptions(
|
||||
signed: false,
|
||||
decimal: true,
|
||||
),
|
||||
|
@ -1056,7 +1058,9 @@ class _DesktopSendState extends ConsumerState<DesktopSend> {
|
|||
key: const Key("amountInputFieldFiatTextFieldKey"),
|
||||
controller: baseAmountController,
|
||||
focusNode: _baseFocus,
|
||||
keyboardType: const TextInputType.numberWithOptions(
|
||||
keyboardType: Util.isDesktop
|
||||
? null
|
||||
: const TextInputType.numberWithOptions(
|
||||
signed: false,
|
||||
decimal: true,
|
||||
),
|
||||
|
|
|
@ -4,6 +4,7 @@ import 'package:flutter_svg/svg.dart';
|
|||
import 'package:stackwallet/utilities/assets.dart';
|
||||
import 'package:stackwallet/utilities/text_styles.dart';
|
||||
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
||||
import 'package:stackwallet/utilities/util.dart';
|
||||
import 'package:stackwallet/widgets/loading_indicator.dart';
|
||||
|
||||
class ExchangeTextField extends StatefulWidget {
|
||||
|
@ -62,6 +63,8 @@ class _ExchangeTextFieldState extends State<ExchangeTextField> {
|
|||
late final void Function(String)? onChanged;
|
||||
late final void Function(String)? onSubmitted;
|
||||
|
||||
final isDesktop = Util.isDesktop;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
borderRadius = widget.borderRadius;
|
||||
|
@ -100,7 +103,9 @@ class _ExchangeTextFieldState extends State<ExchangeTextField> {
|
|||
enableSuggestions: false,
|
||||
autocorrect: false,
|
||||
readOnly: widget.readOnly,
|
||||
keyboardType: const TextInputType.numberWithOptions(
|
||||
keyboardType: isDesktop
|
||||
? null
|
||||
: const TextInputType.numberWithOptions(
|
||||
signed: false,
|
||||
decimal: true,
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue