import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
home: animatedSwicher(),
);
}
}
class animatedSwicher extends StatefulWidget {
const animatedSwicher({Key? key}) : super(key: key);
@override
_animatedSwicherState createState() => _animatedSwicherState();
}
class _animatedSwicherState extends State<animatedSwicher> {
// 바뀔 위젯을 변수처리
// var 타입은 값이 한번 정해지면 고정
// var mWidget = FirstWidget();
// dynamic 또는 부모타입인 widget
Widget mWidget = FirstWidget();
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
AnimatedSwitcher(
duration: Duration(seconds: 3),
child: mWidget,
),
RaisedButton(
onPressed: () {
setState(() {
mWidget = SecondWidget();
});
},
child: Text("버튼"),
),
],
),
),
);
}
}
class FirstWidget extends StatelessWidget {
const FirstWidget({
Key? key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
color: Colors.blue,
width: 100,
height: 100,
);
}
}
class SecondWidget extends StatelessWidget {
const SecondWidget({
Key? key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
color: Colors.orange,
width: 100,
height: 100,
);
}
}
728x90
'Usage > Flutter' 카테고리의 다른 글
[Flutter] 리스트의 항목을 클릭하여 디테일 페이지로 이동할때 hero 애니메이션 적용 (0) | 2021.07.01 |
---|---|
[Flutter] Json 데이터를 GetX를 활용하여 list view, detail view 만들기 (0) | 2021.07.01 |
[Flutter/Animation] PositionedTransition을 직접 구현해보기 (0) | 2021.06.24 |
[Flutter/Animation] PositionedTransition을 활용한 밑에서 위로 올라오는 애니메이션 (0) | 2021.06.24 |
[Flutter/Animation] ScaleTransition을 활용한 컨테이너 사이즈 애니메이션 (0) | 2021.06.24 |