#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

@@ -2,8 +2,8 @@
class BuildData {
static const String name = "ServerBox";
static const int build = 361;
static const int build = 362;
static const String engine = "3.10.0";
static const String buildAt = "2023-06-21 18:31:01.595350";
static const int modifications = 2;
static const String buildAt = "2023-06-23 16:49:18.940704";
static const int modifications = 14;
}

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);
}