-
드디어 프로필 페이지 코드를 짜기 시작했다.
아직 onPressed는 구현하지 않았고 틀 정도만 짰다.
import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( appBar: AppBar( title: Text('프로필'), ), body: Column( children: [ Row( children: [ Text('닉네임'), TextButton(onPressed: onPressed, child: Text('수정')), ], ), TextButton(onPressed: onPressed, child: Text('비밀번호 수정하기')), TextButton(onPressed: onPressed, child: Text('로그아웃')), ], ), bottomNavigationBar: Column( children: [ TextButton(onPressed: onPressed, child: Text('> 공지사항')) , TextButton(onPressed: onPressed, child: Text('> 환경설정')), TextButton(onPressed: onPressed, child: Text('> FAQ')), TextButton(onPressed: onPressed, child: Text('고객센터')), ], ), ), ); } }