앱화면 구축; 이미지 띄우기
goal : App Scaffolding, 넷상 이미지 띄우기
Scaffold
Class를 통해 AppBar를 생성하자.
※Scaffold
Class는 앱바, 버튼 등 여러 앱화면 구성위젯을 제공한다.※
https://api.flutter.dev/flutter/material/Scaffold-class.html
- Scaffold
배경색 : blueGrey
-AppBar
배경색 : blueGrey[900]
title : 'I Am Rich' ;중앙에 위치
다음과 같은 구조로 코드를 작성했다.
import 'package:flutter/material.dart';
void main() {
runApp(
MaterialApp(
home: Scaffold(
backgroundColor: Colors.blueGrey,
appBar: AppBar(
backgroundColor: Colors.blueGrey[900],
title: Center(
child: Text('I Am Rich'),
),//Center
),//AppBar
),//Scafold
),//MaterialApp
);
}
실행결과 아래의 화면이 나타난다.
이미지의 url을 통해 화면중앙에 내가 선택한 이미지를 띄워보자.
최종적으로 다음과 같은 구조로 코드를 작성했다.
아래와 같은 화면이 나타난다.
Author And Source
이 문제에 관하여(앱화면 구축; 이미지 띄우기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@dbscks1239/앱화면-구축-이미지-띄우기-feat.-Flutter저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)