부모함수호출 썸네일형 리스트형 플러터 에서 부모/자식 간의 함수 호출, 함수 콜백 (flutter callback, child function call ) 플러터에서 부모 자식간 함수 호출 하는법. 1. 부모에서 자식의 함수 호출 다트 클래스 만들때 마다 key 상속 받는걸 어디다 쓰나 했는데.. 다 이유가 있었음. import 'package:flutter/material.dart';class ParentPage extends StatefulWidget { @override _ParentPageState createState() => _ParentPageState();}class _ParentPageState extends State { // 자식 위젯의 상태에 접근할 수 있는 GlobalKey 선언 final GlobalKey childKey = GlobalKey(); @override Widget build(BuildContext conte.. 더보기 이전 1 다음