[Flutter] 플러터 스티키 헤더(Sticky Header)


[Flutter] 플러터 스티키 헤더(Sticky Header)

pubspec.yaml sticky_headers | Flutter Package Flutter Sticky Headers - Lets you place headers on scrollable content that will stick to the top of the container whilst the content is scrolled. pub.dev sticky_headers: ^0.2.0 적용하기 ui.dart class StickyHeaderUi extends GetView<TestController> { const StickyHeaderUi({Key? key}) : super(key: key); @override Widget build(BuildContext context) => Scaffold( appBar: AppbarWidget(appBar: AppBar()), body: const SafeArea( child: StickyHeaderWidget(), ), ); } ...


#flutter #헤더 #플러터 #스티키헤더 #스티키 #고정 #stickyheader #sticky #header #헤더고정

원문링크 : [Flutter] 플러터 스티키 헤더(Sticky Header)