[Flutter] 플러터 플로팅 액션버튼(FloatingActionButton) 가운데 만들기


[Flutter] 플러터 플로팅 액션버튼(FloatingActionButton) 가운데 만들기

예제코드 FloatingActionButton class TestUi extends GetView<TestController> { const TestUi({Key? key}) : super(key: key); @override Widget build(BuildContext context) => Scaffold( // "extendBody"를 해야 홈이 파인 틈 사이가 투명된다. extendBody: true, appBar: AppbarWidget(appBar: AppBar()), body: SafeArea( child: Container( padding: const EdgeInsets.fromLTRB(40, 40, 40, 0), child: SingleChildScrollView( physics: const AlwaysScrollableScrollPhysics(), child: Column( children: const [ Text("테스트 페이지"), ], ), ), ), ), /...


#button #플로팅액션바 #플로팅액션 #플로팅버튼 #플로팅 #플러터 #버튼 #가운데 #flutter #floatingaction #floating #floatbutton #float #플로팅액션버튼

원문링크 : [Flutter] 플러터 플로팅 액션버튼(FloatingActionButton) 가운데 만들기