반응형
페이지 이동 및 전환
Get.to(() => SecondPage());
Get.to(SecondPage());
전환되는 페이지로 데이터 보내기
(첫 번째 페이지에서 두 번째 페이지로 데이터 전달)
Get.to(() => SecondPage(), arguments: value);
Get.to(SecondPage(), arguments: value);
그리고 두 번째 페이지에서 데이터 받기
var value = Get.arguments;
전환되는 페이지로부터 데이터 받기
(두 번째 페이지에서 첫 번째 페이지로 데이터 전달)
var value = await Get.to(SecondPage());
그리고 두 번째 페이지에서 데이터를 전달
Get.back(result: value);
반응형
'Flutter > code' 카테고리의 다른 글
[플러터] Flutter GridView 사이 간격 (0) | 2021.10.10 |
---|---|
[플러터] Flutter Rounded Corners Image 이미지 둥근 모서리 (0) | 2021.10.09 |
[플러터] Flutter Text overflow (0) | 2021.10.08 |
[플러터] Flutter TextField icon, 테두리 적용 (0) | 2021.10.07 |
댓글