SearchBar

搜索栏


YmSearchBar(
	hint: "请输入关键词",
	width: MediaQuery.of(context).size.width - 40,
	height: 40,
	onSubmitted: (text){
	  print("搜索$text");
	  setState(() {
		_searchTextValue = text;
	  });

	},
	clearCallback:(){
	  setState(() {
		_searchTextValue = "";
	  });
	},
	onBackCallback: () {

	}
),


本站内容来源于作者发布和网络转载,如有版权相关问题请及时与我们取得联系,我们将立即删除。