[Flutter WEB]

김영진·2022년 10월 14일
0

Flutter WEB

목록 보기
1/1

목적

플러터 웹 namedrouting 시에 404에러가 발생하는 에러 해결 방법 문서화

내용

에러 내용

www.homepage.com 으로 접속 시에는 접속이 가능하지만
www.homepage.com/home 으로 접속 시에 404 에러가 발생하였음

새로고침을 방지할 위젯을 stf 위젯으로 변경하고

class _AppState extends State<App> with AutomaticKeepAliveClientMixin {


  bool get wantKeepAlive => true;


  Widget build(BuildContext context) {
    super.build(context);

위와 같은 코드를 작성하여서 해결하였음.

결과

굿

profile
2021.05.03) Flutter, BlockChain, Sports, StartUp

0개의 댓글