IOS TOPICS

IOS Introduction
Swift UI Label
Swift UI Button
Swift UI Text Field
Swift UI Slider
Swift UI Switch
Swift UI Stepper
Swift UI Date Picker
Swift UI Segmented Control
Views
Table View
Collection Views
SCROLL VIEW
iOS Content View
iOS View Controllers
iOS Bar interface
iOS Navigation interface
iOS Architect Pattern
iOS Libraries
iOS Web request and parsing
iOS user defaults
iOS Coredata and database

To Disable Autocorrection


To disable autocorrection in the TextField:

Code:

TextField( "Name", text: $name) .disableAutocorrection(true)

Editing Font to non default fonts and customising borders in TextField:

You can specify each aspect of the font and borders to fit

Code:

TextField("Name", text: $name) .font(Font.system(size : 15, weight: .medium, design: .seriff)) .overlay(RoundRectangle(cornerRadius(10)