Swift UI Series #1: Floating Action Button

The Primary focus around this series is to get familiar with swift-ui, play with animations and custom views.

Creating the FAB

To create a FAB, we add an Image with system icon into the FloatingActionView body.

struct FloatingActionView: View {
    var body: some View {
        Image(systemName: "plus.circle.fill")
    }
}

Please Continue reading at nitishbhatt.dev/swift-ui-series-floating-ac..