#65 new: custom keyboard type

This commit is contained in:
lollipopkit
2023-06-23 16:59:27 +08:00
parent 743e5bfbff
commit f0b31a9b08
15 changed files with 139 additions and 39 deletions

View File

@@ -1,3 +1,4 @@
import 'package:flutter/material.dart';
import 'package:toolbox/core/persistant_store.dart';
import 'package:toolbox/core/utils/platform.dart';
@@ -72,4 +73,7 @@ class SettingStore extends PersistentStore {
StoreProperty<bool> get fullScreenJitter =>
property('fullScreenJitter', defaultValue: true);
StoreProperty<int> get keyboardType =>
property('keyboardType', defaultValue: TextInputType.text.index);
}