Friday, October 25, 2019

SwiftUI: ToggleStyle - The Completely Customized Toggle



To completely customize the #SwiftUI Toggle view's colors, you're going to have to reconstruct it. I show you one way to do this in the SwiftUI Views book.

In the example above, I'm using a custom ToggleStyle (ColoredToggleStyle) that reconstructs the Toggle view so I can customize the colors any way I want.

My patrons have access to the full code.

Full Code: https://www.patreon.com/posts/31036259
Free Book Sample: https://www.bigmountainstudio.com/free-swiftui-book

Thursday, October 24, 2019

SwiftUI: ToggleStyle Customization with isOn



Toggle customization! The code isn't displayed in this pic (next page) but you can use the #SwiftUI ToggleStyle and access the isOn property to determine how you want to represent that state. (2 different views.)

Full Code: https://www.patreon.com/posts/31009020
Free Book Sample: https://www.bigmountainstudio.com/free-swiftui-book

Wednesday, October 23, 2019

SwiftUI: ToggleStyle



Yesterday you go the intro into a Toggle in #SwiftUI. But what about more customizations? You can use the ToggleStyle to BEGIN some customizations.
Code: https://www.patreon.com/posts/30984097
Free Book Sample: https://www.bigmountainstudio.com/free-swiftui-book

"That's it?"
For the actual Toggle, yes.
But stick around and tomorrow you will see how to take ToggleStyle to the NEXT LEVEL implement your OWN custom Toggle. (I'm saving the best for tomorrow and the day after.) 🚀

Wednesday, October 16, 2019

SwiftUI: TextField Alignment



I had someone ask about aligning text within a TextField view and I didn't have a page in my book for this but added one just now.

I've been adding pages and updates. I'll try to get a new copy up on the site tonight: https://www.bigmountainstudio.com/swiftui-views-book

Monday, October 14, 2019

SwiftUI: 3D Rotations that have Depth



Give your rotations "depth" by adding a Z-axis value along with X and Y values.
You can read and see more examples here: https://www.bigmountainstudio.com/members/posts/11520-swiftui-adding-depth-to-your-3d-rotations

This wraps up the series! Hope you liked it 😃



By the way, did you know you can sign up and get these tips delivered to your inbox? Join the Big Mountain Climber's Camp: https://www.bigmountainstudio.com/climbers

Saturday, October 12, 2019

SwiftUI: 3D Rotations Week - Combining the X & Y Axes



What happens when you combine and X and a Y-axis to a 3D rotation? What is created and how does this affect your rotation?

Find out here: http://bit.ly/HowXandYaxisVectorsWork

Friday, October 11, 2019

SwiftUI: 3D Rotations Week - Anchors ⚓️



How do you change where the 3D rotation happens?

Find out more here: http://bit.ly/3DRotationAnchors

Tuesday, October 8, 2019

SwiftUI: Rotation 3D Effect



I remember asking if you thought you would see the text (overlayed on a rectangle) could be seen when flipped over. Yes, yes it can.

This week in #SwiftUI we look at Rotation 3D Effect!

Get Answers Fast Without Hours Of Experimenting With #SwiftUI Views: https://bigmountainstudio.com/swiftui-views-book

Wednesday, October 2, 2019

SwiftUI Views Book Now Includes Xcode Project (460+ SwiftUI Files!)



I'm now including the culmination 750 hours of work and over 460 #SwiftUI files of experimentation, testing, failing and succeeding in the hands of all those that have and will be getting the SwiftUI Views book. 📙

Link with 15% off coupon 🎟 (expires in 9 days):

https://www.bigmountainstudio.com/swiftui-views-book?coupon=HACKINGWITHSWIFT

Tuesday, October 1, 2019

SwiftUI Container View Concept



SwiftUI has this concept of containers that will organize its child views in some way.

You add the container, then add some other views inside it.

Containers can also have modifiers applied to them.

SwiftUI Search & Filter with Combine - Part 3 (iOS, Xcode 13, SwiftUI, 2...

In part 3 of the Searchable video series, I show you how to use Combine in #SwiftUI for the search and filter logic connected to the searcha...