일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- c# 윈폼
- 유니티
- c# winform
- Unity
- Houdini
- Flutter
- C언어 포인터
- 도커
- vim
- jupyter lab
- Python
- Algorithm
- c#
- gitlab
- HTML
- 다트 언어
- 플러터
- C# delegate
- 구조체
- 포인터
- dart 언어
- github
- jupyter
- docker
- 깃
- git
- c# 추상 클래스
- Data Structure
- C++
- c언어
Archives
- Today
- Total
목록flutter sliverAppBar (1)
nomad-programmer
[Programming/Flutter] Sliver 애니메이션 효과
SliverAppBar & SliverFillRemaining SliverAppBar와 SliverFillRemaining은 화면 헤더를 동적으로 표현하는 위젯이다. 헤더를 위로 스크롤하면 헤더 부분이 작아지면서 헤더 하단에 있던 정적인 내용만 보이는 AppBar 형태로 애니메이션된다. 이런 효과를 Sliver 효과라고 부른다. SliverAppBar와 SliverFillRemaining을 사용한 예이다. import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return Mate..
Programming/Flutter
2020. 10. 9. 13:58