ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 모각코 6주차
    윙커톤 2022. 11. 17. 13:56

    드디어 프로필 페이지 코드를 짜기 시작했다. 

    아직 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('고객센터')),
              ],
            ),
          ),
        );
      }
    }
    
    

    '윙커톤' 카테고리의 다른 글

    모각코 5주차  (0) 2022.11.10
    모각코 4주차  (0) 2022.11.04
    모각코 3주차  (0) 2022.10.12
    모각코 2주차  (0) 2022.10.06
    윙커톤 모각코 1주차  (0) 2022.09.28
Designed by Tistory.