skip to Main Content

Flutter Unable to create corner curved color padding

Orange color corner curve padding not archive but here I get straight line only suggest any check my code..! Widget build(Context context) { return Padding( padding: EdgeInsets.symmetric(vertical: 6.0, horizontal: 6.0), child: Card( elevation: 6.0, color: Colors.white, clipBehavior: Clip.hardEdge, shape: RoundedRectangleBorder(…

VIEW QUESTION

Flutter bottomNavBar with FAB button not working properly

So starting out I have this simple bottomNavBar which changes pages. What I wanted to do was add a FAB bar in the middle. original bottomNavBar bottomNavigationBar: BottomNavigationBar( type: BottomNavigationBarType.fixed, currentIndex: 0, backgroundColor: Color(0xFF0066EE), selectedItemColor: Colors.white, unselectedItemColor: Colors.white, items: const…

VIEW QUESTION

Adding Shadow to Curved AppBar – Flutter

I have a curved AppBar using the following code. I want to add a shadow right beneath the curve. Any help would be much appreciated! image of curved AppBar Code: appBar: PreferredSize( preferredSize: const Size.fromHeight(85.0), child: AppBar( title: const Text("Services"),…

VIEW QUESTION
Back To Top
Search