Widget _basicTypeWithLeftIconLeftLabel(BuildContext context) { return Column( children: [ TDInput( leftIcon: const Icon(TDIcons.app), leftLabel: '标签文字', controller: controller[10], backgroundColor: Colors.white, hintText: '请输入文字', onChanged: (text) { setState(() {}); }, onClearTap: () { controller[10].clear(); setState(() {}); }, ), const SizedBox( height: 16, ) ], ); }