Coder Social home page Coder Social logo

customdynamicproperties's Introduction

Custom Dynamic Properties

This project demonstrates how to make a custom DynamicProperty that will cause a SwiftUI View to rebuild it self when the property updates.

There are 2 steps to creating a dynamic property:

  • Declare a @propertyWrapper that conforms to DynamicProperty.
  • Add a @StateObject to the wrapper that is used to back the wrappedValue for the property wrapper.

Whenever the @StateObject emits an objectWillChange event (ie through a change to one of its @Published properties), the subscribed property wrapped will cause the View to update. This happens through the default implmentation of DynamicProperty's update function, which is provided by Apple.

https://developer.apple.com/documentation/swiftui/dynamicproperty

This project provides two sample custom @propertyWrapper's:

Interval

@Interval is a property wrapper that provides a timer that updates with the elapsed time.

@Interval(seconds: 1) private var time: TimeInterval

It provides methods to stop and reset as well as start the timer:

.onAppear { _time.start() }
.onDisappear { _time.stop() }

Notify

@Interval is a property wrapper that can subscribe to any Foundation.Notification and transform it into another type (such as by inspecting its userInfo dictionary).

@Notify(
notificationName: UIApplication.userDidTakeScreenshotNotification,
transform: { _ in Date() }
) private var screenshotDate: Date?

image

customdynamicproperties's People

Contributors

joshuajhomann avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.