MobileEntityLogo.png

Hi.

Welcome to the best online resource for IOS & Android tutorials.

What's new in SwiftUI 2.0

What's new in SwiftUI 2.0

ProgressView

Loading spinner screenshot
Progress bar screenshot

As you see we get two options for progress view, a simple loading spinner with a label, or a progress bar that you can set the current value,, and total which is the total range. Both value and total are of type Int. You don’t have to use that annoying 0.0 through 1.0 weird range thing we had going on in UIKit.

ColorPicker

ColorPicker screenshot

No more having to write your own color picker, or using a third party library. Apple makes it simple to add a color picker to your app.

LazyHGrid, and LazyVGrid

Lazy Grids Screenshot

Another efficient way of creating a collection of elements on the screen. Since these grids use lazy each row or column will not load if it is not visible on the screen thus making it efficient when pulling data from a database.

TextEditor

TextEditor screenshot
An introduction to LibraryContentProvider

An introduction to LibraryContentProvider

Swift 5.3 Multiple Trailing Closures SE-0279; This makes Swift even more beautiful.

Swift 5.3 Multiple Trailing Closures SE-0279; This makes Swift even more beautiful.

0