Button 2022-06-07 剑道仙尊 95 按钮 YmTextButton("RoundedRectangle", textColor:Color(0xFFFFFFFF),onClick: (){ print("Button Pressed"); }), YmTextButton("Stadium", textColor:Color(0xFFFFFFFF), onClick:(){ print("Button Pressed"); Button
SearchBar 2022-06-07 剑道仙尊 95 搜索栏 YmSearchBar( hint: "请输入关键词", width: MediaQuery.of(context).size.width - 40, height: 40, onSubmitted: (text){ print("搜索$text"); setState(() { _searchTextValue = text; }); }, clearCa SearchBar
AppBar 2022-06-07 剑道仙尊 79 导航栏 YmAppBar("AppBar自定义", background:[ const Color(0xFF606FFF), const Color(0xFF3446F2), ],onBackClick: goBack,textColor: Colors.white,), YmAppBar("AppBar自定义", background:[ const Color(0xFF606FF AppBar AppBar