如何在 Flutter 的文本输入字段中配置自动大写行为?
How can I configure auto-capitalization behavior in Flutter's text entry fields?
我正在 Windows 上试验 Flutter 开发。我有一个带有 InputField 的简单测试应用程序。我希望第一个键盘输入是大写字母,但目前看不到实现它的方法(例如,按下 shift 键启动键盘)。有什么想法吗?
代码(有点简化)是:
import 'package:flutter/material.dart';
void main() {
runApp(new MaterialApp(
theme: new ThemeData.dark(),
home: new MainScreen()
));
}
class MainScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
leading: new IconButton(
icon: new Icon(Icons.menu),
tooltip: 'Navigation menu',
onPressed: null,
),
title: new Text('Test'),
),
body: new NewTest(),
);
}
}
/// Widget
class NewTest extends StatefulWidget {
@override
_NewTestInputState createState() => new _NewTestInputState();
}
/// State
class _NewTestInputState extends State<NewTest> {
InputValue _currentInput;
void _handleInputChange(InputValue input) {
if (input != _currentInput){
setState(() {
_currentInput = input;
});
}
}
void _handleInputSubmitted(InputValue input) {
setState(() {
_currentInput = const InputValue();
});
}
@override
Widget build(BuildContext context) {
InputField _widget = new InputField(
value: _currentInput,
hintText: 'Enter text',
keyboardType: TextInputType.text,
autofocus: true,
onChanged: _handleInputChange,
onSubmitted: _handleInputSubmitted,
style: new TextStyle(fontSize: 20.0),
);
Container _container = new Container(
child: _widget,
decoration: new BoxDecoration(
border: new Border.all(
color: Colors.green[300],
width: 2.0,
),
),
padding: new EdgeInsets.all(16.0),
);
return _container;
}
}
小写字母是我们 iOS Flutter 键盘包装器实现中的一个错误,该错误已于今天修复!
我在此处提交了一个错误以使其可配置(因此您可以禁用自动大写句子行为):https://github.com/flutter/flutter/issues/9363
如果这不能解决您的问题,请随时与我们联系。
Flutter 有一个 textCapitalization 属性 用于文本字段。将此 属性 设置为 TextCapitalization.sentences 或任何可用值,例如 .characters 或 .words 像这样:
TextField(
keyboardType: TextInputType.text,
**textCapitalization: TextCapitalization.sentences,**
style: TextStyle(
fontSize: 30.0,
color: Colors.black,
fontWeight: FontWeight.bold
),
)
我正在 Windows 上试验 Flutter 开发。我有一个带有 InputField 的简单测试应用程序。我希望第一个键盘输入是大写字母,但目前看不到实现它的方法(例如,按下 shift 键启动键盘)。有什么想法吗?
代码(有点简化)是:
import 'package:flutter/material.dart';
void main() {
runApp(new MaterialApp(
theme: new ThemeData.dark(),
home: new MainScreen()
));
}
class MainScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
leading: new IconButton(
icon: new Icon(Icons.menu),
tooltip: 'Navigation menu',
onPressed: null,
),
title: new Text('Test'),
),
body: new NewTest(),
);
}
}
/// Widget
class NewTest extends StatefulWidget {
@override
_NewTestInputState createState() => new _NewTestInputState();
}
/// State
class _NewTestInputState extends State<NewTest> {
InputValue _currentInput;
void _handleInputChange(InputValue input) {
if (input != _currentInput){
setState(() {
_currentInput = input;
});
}
}
void _handleInputSubmitted(InputValue input) {
setState(() {
_currentInput = const InputValue();
});
}
@override
Widget build(BuildContext context) {
InputField _widget = new InputField(
value: _currentInput,
hintText: 'Enter text',
keyboardType: TextInputType.text,
autofocus: true,
onChanged: _handleInputChange,
onSubmitted: _handleInputSubmitted,
style: new TextStyle(fontSize: 20.0),
);
Container _container = new Container(
child: _widget,
decoration: new BoxDecoration(
border: new Border.all(
color: Colors.green[300],
width: 2.0,
),
),
padding: new EdgeInsets.all(16.0),
);
return _container;
}
}
小写字母是我们 iOS Flutter 键盘包装器实现中的一个错误,该错误已于今天修复!
我在此处提交了一个错误以使其可配置(因此您可以禁用自动大写句子行为):https://github.com/flutter/flutter/issues/9363
如果这不能解决您的问题,请随时与我们联系。
Flutter 有一个 textCapitalization 属性 用于文本字段。将此 属性 设置为 TextCapitalization.sentences 或任何可用值,例如 .characters 或 .words 像这样:
TextField(
keyboardType: TextInputType.text,
**textCapitalization: TextCapitalization.sentences,**
style: TextStyle(
fontSize: 30.0,
color: Colors.black,
fontWeight: FontWeight.bold
),
)