Develop/Flutter
2023. 6. 28.
[Flutter] Navigator.pushNamed로 다른페이지에 변수값 넘겨주기
flutter 기본으로 생성된 페이지가 있다라고 가정하고, 새로운 dart파일을 생성한다음에 제일 기본적인 화면이 띄워지게끔 아래와같이 코드 설정 import 'package:flutter/material.dart'; class SelectedPage extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text("New Page"), ), body: Container( color: Colors.white, // Set your desired background color ), ); } } flutter에서 기본으로 생성된 페이지에서는 아래와같이 route ..