Flutter:父组件,向子组件传值,子组件向二级页面传值

父页面,传值给子组件,子组件把数据传递给二级页面

父页面

js 复制代码
final List _datas; // 通过接口请求到的数据

...
...

// 父页面中的子组件:SearchCell
body: Container(
	child:SearchCell(datas: _datas,);
)

子组件:SearchCell

js 复制代码
class SearchCell extends StatelessWidget {
  final List? datas;
  const SearchCell({this.datas});
}

// 触发某次点击事件,把datas传递过去
onTap: (){
  Navigator.of(context).push(
  	// 把数据传递给搜索页
    MaterialPageRoute(builder: (BuildContext context)=> SearchPage(datas: datas,))
  );
},

搜索页

js 复制代码
class SearchPage extends StatefulWidget {
  final List? datas;
  const SearchPage({this.datas});
  @override
  State<SearchPage> createState() => SearchPageState();
}
class SearchPageState extends State<SearchPage> {
	final List _modals = [];
	
	// 根据搜索的内容去检索上个页面传来的datas
	void _searchData(String text) {
		// 每次搜索先清空
		_modals.clear();
		if(text.length>0){
			for(int i = 0; i < widget.datas.length; i ++){
				String name = widget.datas[i].name;
				// contains 是否包含
				if(name.contains(text)){
					_modals.add(widget.datas[i]);
				}
			}
		}
	}
	....
	....
	children: [
		SearchBar(onChanged: (String texts){
			_searchData(text);
		},),
	]
}

// 搜索页内的小部件,头部的搜索框,
class SearchBar extends StatefulWidget {
  // 定义onChanged的回调方法
  final ValueChanged<String>? onChanged;
  const SearchBar({this.onChanged});
  @override
  State<SearchBar> createState() => SearchBarState();
}
class SearchBarState extends State<SearchBar> {
  // 监听输入框的变化
  void _onChange(String value){
    if(widget.onChanged != null){
      widget.onChanged!(value);
    }
  }
}

输入框变化后,检索datas的内容:

相关推荐
爱学习的绿叶13 小时前
flutter TabBarView 动态添加删除页面
flutter
趴菜小玩家15 小时前
使用 Gradle 插件优化 Flutter Android 插件开发中的 Flutter 依赖缺失问题
android·flutter·gradle
jhonjson1 天前
Flutter开发之flutter_local_notifications
flutter·macos·cocoa
iFlyCai2 天前
23种设计模式的Flutter实现第一篇创建型模式(一)
flutter·设计模式·dart
恋猫de小郭2 天前
Flutter 小技巧之 OverlayPortal 实现自限性和可共享的页面图层
flutter
A_cot2 天前
Vue.js:构建现代 Web 应用的强大框架
前端·javascript·vue.js·flutter·html·web·js
B.-2 天前
在 Flutter 应用中调用后端接口的方法
android·flutter·http·ios·https
️ 邪神2 天前
【Android、IOS、Flutter、鸿蒙、ReactNative 】约束布局
android·flutter·ios·鸿蒙·reactnative
pinkrecall20122 天前
flutter调试
flutter