Skip to content

Instantly share code, notes, and snippets.

@hongsw
Last active October 11, 2022 04:56
Show Gist options
  • Save hongsw/ef8ea85fba0cf1a2b9d6911c70ae6baf to your computer and use it in GitHub Desktop.
Save hongsw/ef8ea85fba0cf1a2b9d6911c70ae6baf to your computer and use it in GitHub Desktop.
레이아웃 위젯을 사용해보자

레이아웃 위젯을 사용해보자

Created with <3 with dartpad.dev.

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