Combining List and Form views in SwiftUI – Ios swift
I there anyway to combine a List and say Form view on the same screen? or do you have to have one or the other and manually build the rest? I have this code, and each component the list and…
I there anyway to combine a List and say Form view on the same screen? or do you have to have one or the other and manually build the rest? I have this code, and each component the list and…
I am making a website to convert text to notecards, and I am struggling with the animation. Whatever I do, the 3d animation seems to mess up the text, mirroring it. I've tried playing with the css, but I'm new…
I have four tabs in bottomnavigation, i want to build functionally like Instagram when I tap on the home screen it brings the top of the home page For ex: I m on the home screen I scroll on the…
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(…
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…
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"),…
I'm trying to align this logo in the center of the page, between the two sections of links in the header. I have the image in a separate div, and a unordered list on either side, with float left and…
I want to create a button "Skip Intro", similar to the one on Netflix (but with a ridiculous part where a button changes its location randomly as soon as you hover over it). The code for changing to a random…
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…
I'm trying to center my Text and two icon buttons which are the arrows in the middle. I tried adding padding but it seems kind of brute force, wondering if there was a proper way for this. return Scaffold( appBar:…