# FlutterTextFile **Repository Path**: jrnet/FlutterTextFile ## Basic Information - **Project Name**: FlutterTextFile - **Description**: Flutter文本输入框 - **Primary Language**: Dart - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-19 - **Last Updated**: 2022-05-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # FlutterTextFile 自定义的文本输入框 ##### 示例在项目内 ![基础使用图](https://images.gitee.com/uploads/images/2020/0219/185607_02ae90bd_4771133.png "屏幕截图.png") | 常用参数 | 类型 | 作用 | |:-----:|:-----:|:-----:| |width | double | 输入框宽度 | |height | double | 输入框高度 | |decoration | Decoration | 容器样式 如:边框、背景色 | |onChanged | ValueChanged | 输入事件回调 | |submitChanged | ValueChanged | 回车事件回调 | |isRightIcon | bool | 是否显示右侧图标 | |isLeftIcon | bool | 是否显示左侧图标 | ```dart //简单示例 FlutterTextFile( width: 200, ), ```