BuildContext개념은 강좌 확인
변경된 사용법
onPressed: () {
ScaffoldMessenger.of(context)
.showSnackBar(SnackBar(content: Text('Hello')));
}),
참고
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(
// This is the theme of your application.
//
// Try running your application with "flutter run". You'll see the
// application has a blue toolbar. Then, without quitting the app, try
// changing the primarySwatch below to Colors.green and then invoke
// "hot reload" (press "r" in the console where you ran "flutter run",
// or simply save your changes to "hot reload" in a Flutter IDE).
// Notice that the counter didn't reset back to zero; the application
// is not restarted.
primarySwatch: Colors.blue,
),
home: MyPage(),
);
}
}
class MyPage extends StatelessWidget {
const MyPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Snack Bar'),
centerTitle: true,
),
body: Center(
child: TextButton(
child: Text(
'show Me',
style: TextStyle(
color: Colors.white,
backgroundColor: Colors.red,
),
),
onPressed: () {
ScaffoldMessenger.of(context).showSnackBar(SnackBar(
backgroundColor: Colors.teal,
duration: Duration(milliseconds: 1000),
content: Text(
'Hello',
textAlign: TextAlign.center,
style: TextStyle(color: Colors.white),
)));
}),
));
}
}
'플로터(Flutter) > 기본' 카테고리의 다른 글
(코딩쉐프) 21강 Column widget, Row widget (0) | 2023.01.03 |
---|---|
(코딩쉐프) 19강 Toast Message (0) | 2023.01.03 |
(코딩쉐프) 14~16강 appbar, drawer (0) | 2022.12.28 |
(코딩쉐프) Null Safety (0) | 2022.12.28 |
(코딩쉐프) 순한맛 11강 [캐릭터 페이지 완성] (0) | 2022.12.28 |