skip to Main Content

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

Is it possible to use `@apply` in tailwindcss for keyframes?

I need to apply the following entering and leaving animation They are presented using tailwindcss classes Entering: "transform ease-out duration-300 transition" From: "translate-y-2 opacity-0 sm:translate-y-0 sm:translate-x-2" To: "translate-y-0 opacity-100 sm:translate-x-0" Leaving: "transition ease-in duration-100" From: "opacity-100" To: "opacity-0" I tried…

VIEW QUESTION

Dock Widget on other Widget Flutter

I want to "dock" the Text Widget you can see on the Picture on the GridView. My approach looks like this: Container( height: 500, child: Column( children: [ Expanded( child: GridView.count( physics: NeverScrollableScrollPhysics(), crossAxisCount: 7, childAspectRatio: 0.6, children: List.generate(dates.length, (index)…

VIEW QUESTION
Back To Top
Search