skip to Main Content

Custom Curve in Flutter

I am developing an App using flutter and came across a custom curve like structure and I have no Idea how to create one. I am sharing a screenshot for the same. I did some research and found that it…

VIEW QUESTION

Flutter – How to add top padding to a Stack Bottom Navigation Bar

class MainScreen extends StatelessWidget { MainScreen({super.key}); List<Widget> pageList = const [ HomePage(), FlightsPage(), DirectoryPage(), GuidePage() ]; @override Widget build(BuildContext context) { final controller = Get.put(TabIndexController()); return Obx(() => Scaffold( body: Stack( children: [ pageList[controller.tabIndex], Align( alignment: Alignment.bottomCenter, child: Theme( data:…

VIEW QUESTION
Back To Top
Search