Flutter Create

황인호·2022년 12월 8일
0
import 'package:flutter/material.dart';

void main() {
  runApp(MaterialApp(
    // debug 없애는 코드
    debugShowCheckedModeBanner: false,
    home: HomeScreen(),
  ));
}

class HomeScreen extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Color(0xFFF99231),
      body: Column(
        // 가운데 정렬 느낌
        mainAxisAlignment: MainAxisAlignment.center,
        // child 는 하나의 위젯만 사용가능
        // children 은 여러개의 위젯 사용가능
        children: [
          // 사진 삽입
          Image.asset(
            'assets/img/logo.png',
          ),
          // 로딩
          CircularProgressIndicator(
            color: Colors.white,
          ),
        ],
      ),
    );
  }
}

이미지 삽입할때 에러 나서 참고한 글 : https://eunoia3jy.tistory.com/102

yaml 파일

flutter:
  # The following line ensures that the Material Icons font is
  # included with your application, so that you can use the icons in
  # the material Icons class.
  uses-material-design: true

  assets:
    - assets/img/logo.png
profile
성장중인 백엔드 개발자!!

0개의 댓글