티스토리 뷰
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.orange),
useMaterial3: true,
),
home: LayoutDemoPage(),
);
}
}
class LayoutDemoPage extends StatelessWidget {
const LayoutDemoPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.primaryContainer,
title: Text(
'Flutter Layout Demo',
style: TextStyle(
color: Theme.of(context).colorScheme.onPrimaryContainer),
),
),
body: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Expanded(
child: Column(
children: [
Padding(
padding: const EdgeInsets.only(bottom: 8),
child: Text(
'스위스에 멋진 캠프 그라운드',
style: TextStyle(
fontWeight: FontWeight.bold,
),
),
),
Text(
'캔더스태그 / 스위스',
style: TextStyle(color: Colors.grey.shade500),
),
],
),
),
Icon(
Icons.star,
color: Colors.red,
),
Text('41')
],
),
);
}
}
'플러터(Flutter)' 카테고리의 다른 글
플러터 이미지 주사위 (0) | 2024.10.24 |
---|---|
플러터 레이아웃 리팩토링 (0) | 2024.10.23 |
플러터 4.4.1 웹뷰 webview_flutter (0) | 2023.10.07 |
플러터 net::ERR_CLEARTEXT_NOT_PERMITTED (0) | 2023.10.07 |
[플러터] flutter url_launcher 를 사용하여 웹 브라우저 창 띄우기 (0) | 2023.10.05 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- C언어
- 포인터
- 스크래핑
- 인포믹스
- 프로씨
- webix
- ocjap
- 자바 smtp
- php
- ocajp
- 이클립스
- KG
- 문자열
- JDBC
- Python
- esql
- 오라클
- XE3
- C
- 자바
- xe addon
- ocpjp
- proc
- 파이썬
- EC
- XE
- 파싱
- 플러터
- xe애드온
- MySQL
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함