Giter VIP home page Giter VIP logo

swiftui-loopedview's Introduction

SwiftUI-LoopedView

This is a SwiftUI View struct allowing to rotate any views.

How to

struct ExampleView: View {
    @State var isRotating = false       // create something to change the rotation state
    @State var rotationsPerSecond = 1.0 // set the speed
    var body: some View {
        VStack {
            LoopedView(
                isRotating: $isRotating,
                rotationsPerSecond: $rotationsPerSecond
            ) { // the content is in the ViewBuilder block
                Text("The text being rotated with speed \(rotationsPerSecond)")
            }
            Slider(value: $rotationsPerSecond, in: 0.0...5.0) // reactively changing speed
            Button("Stop rotating") { isRotating.toggle() }   // and the rotation state itself
        }.padding()
    }
}

You can also specify the initial angle for the rotated view but it's not necessary.

The Source Code

Just copy and paste in a separate file.

struct LoopedView<Content>: View where Content: View {
    @Binding var isRotating: Bool
    @Binding var rotationsPerSecond: Double
    @State var initialAngle = 0.0
    @ViewBuilder var content: () -> Content
    
    let timePublisher = Timer.publish(
        every: 0.1,
        on: .current,
        in: .default
    ).autoconnect()
    
    var body: some View {
        content()
            .rotationEffect(Angle(degrees: initialAngle))
            .onReceive(timePublisher, perform: { _ in
                if isRotating {
                    withAnimation(.linear(duration: 1.0)) {
                        initialAngle += 36.0*rotationsPerSecond
                    }
                    initialAngle = initialAngle.truncatingRemainder(dividingBy: 360.0)
                }
            })
    }
}

swiftui-loopedview's People

Contributors

xdkomel avatar

Stargazers

 avatar

Watchers

 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.