Created with <3 with dartpad.dev.
Last active
October 11, 2022 04:56
-
-
Save hongsw/ef8ea85fba0cf1a2b9d6911c70ae6baf to your computer and use it in GitHub Desktop.
레이아웃 위젯을 사용해보자
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp( | |
MaterialApp( | |
home: Scaffold( | |
appBar: AppBar( | |
title: const Text("내폰내툰"), | |
), | |
body: | |
Row( | |
children: [ | |
Column( | |
children: [ | |
Image.network("https://my-k-toon.firebaseapp.com/toon1.png"), | |
const Text("이상한 변호사 우영우") | |
]), | |
Column( | |
children: [ | |
Image.network("https://my-k-toon.firebaseapp.com/toon2.png"), | |
const Text("외모지상주의") | |
]) | |
] | |
) | |
) | |
) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment