Flutter TextField输入内容后 保持光标在最后

发布于 1周前 作者 phonegap100 最后一次编辑是 5天前 来自 分享

Flutter TextField输入内容后 保持光标在最后

import 'package:flutter/material.dart';

class TextFieldFocusDemoPage extends StatefulWidget {
  TextFieldFocusDemoPage({Key key}) : super(key: key);

  _TextFieldDemoPageState createState() => _TextFieldDemoPageState();
}

class _TextFieldDemoPageState extends State<TextFieldFocusDemoPage> {

   TextEditingController inputController;   
   String _username="lisi";
   var _password;

  @override
  void initState() {
    // TODO: implement initState
    super.initState();
    //  删除数据的时候光标在最后面示例demo
    inputController  = TextEditingController.fromValue(
      TextEditingValue(
        text: _username,
        selection: TextSelection.fromPosition(
          TextPosition(
            affinity: TextAffinity.downstream,
            offset:_username.length

          )
        )
        
      )
    );
    
  
  }
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('光标在最后面示例demo'),
      ),
      body: Padding(
        padding: EdgeInsets.all(20),
        // child:TextDemo() ,    
        child:Column(
          children: <Widget>[
            TextField(
              decoration: InputDecoration(
                hintText: "请输入用户名"
              ),
              controller: inputController,
              onChanged: (value){
                 setState(() {
                    _username=value; 
                 });
              },
              
            ),
            SizedBox(height: 10),
            TextField(
              obscureText: true,
              decoration: InputDecoration(
                hintText: "密码"
              ),             
              onChanged: (value){
                 setState(() {
                    this._password=value; 
                 });
              },
              
            ),
            SizedBox(height: 40),
            Container(
              width: double.infinity,
              height: 40,
              child: RaisedButton(
                child: Text("登录"),
                onPressed: (){
                  print(this._username);
                  print(this._password);
                },
                color: Colors.blue,
                textColor: Colors.white,
              ),
            )
          ],
        ) ,     
      )
    );
  }
}

更多关于Flutter TextField输入内容后 保持光标在最后的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html

回到顶部
AI 助手
你好,我是IT营的 AI 助手
您可以尝试点击下方的快捷入口开启体验!