1. 학습목표 - flutter와 dart언어를 사용하여 앱을 만든다. 2. 학습내용 android studio로 코드를 작성하고, 애뮬레이터로 앱을 작동시켜보았다. child: FloatingActionButton( heroTag: "flower", backgroundColor: Colors.white.withOpacity(0.7), child: Image.asset('images/flower2.png'), onPressed: () { Navigator.push( context, MaterialPageRoute( builder: (context) => TimeCapsuleOpen())); }, ), 왼쪽 화면에서 꽃 버튼을 클릭하면 오른쪽 화면의 편지지가 나타난다. 나타난 편지지 아랫부분의 아이콘을 클..