Hover effect in SwiftUI

栏目: IT技术 · 发布时间: 6年前

内容简介:Last week Apple updated iPad Pro and added trackpad support to iPadOS. We finally have Xcode 11.4, which introduces theFortunately, iPad simulator supports trackpad simulation. You have to enable it by using

Last week Apple updated iPad Pro and added trackpad support to iPadOS. We finally have Xcode 11.4, which introduces the onHover and hoverEffect modifiers to help us utilize trackpad and mouse support in SwiftUI . This week we will learn how to be a good iOS citizen and add support for the trackpad to our SwiftUI views.

hoverEffect modifier

SwiftUI provides us the hoverEffect modifier that we can attach to any view. This modifier enables the transformation of trackpad or mouse pointer into the hovering view shape. It is tough to explain this transformation and better to see. Let’s run the example on an iPad simulator.

import SwiftUI

struct RootView: View {    
    var body: some View {
        Text("Hello World!")
            .hoverEffect()
    }
}

Fortunately, iPad simulator supports trackpad simulation. You have to enable it by using I/O -> Input -> Send cursor to Device menu. Now we can see the pointer on the screen. Let’s hover the text view with the pointer.

SwiftUI provides us a HoverEffect struct that describes three types of transformation of the pointer into a view shape. By default, hoverEffect modifier uses the first one, which is called automatic . Besides that, we have highlight and lift transformations. You can use them by only passing it as a parameter to the hoverEffect modifier.

.hoverEffect(.lift)
.hoverEffect(.highlight)

Highlight transformation describes an effect that morphs the pointer into a platter behind the view and shows a light source indicating position. On the other hand, lift transformation defines an effect that slides the pointer under the view and disappears as the view scales up and gains a shadow. Usually, we need the automatic transformation that attempts to determine the effect automatically.

onHover modifier

Now we are familiar with the standard types of hover effect that SwiftUI provides us. But what about custom effects? Happily, SwiftUI enables us to create super custom hovering effects by using onHover modifier. This modifier allows us to register a closure that will be called whenever the pointer of the trackpad or mouse covers a view. onHover modifier enables all the power of animations in SwiftUI that we can use to highlight changes.

import SwiftUI

struct RootView: View {
    @State private var hovered = false
    
    var body: some View {
        Text("Hello World!")
            .scaleEffect(hovered ? 2.0 : 1.0)
            .animation(.default)
            .onHover { isHovered in
                self.hovered = isHovered
            }
    }
}

As you can see in the example above, we use onHover modifier to register a closure that delivers us a Boolean value. This Boolean value is true whenever the pointer hovers the view. We save the value into a state variable and scale our view using default animation.

To learn more about the power of animation modifier in SwiftUI , take a look at my “ Animations in SwiftUI ” post.

Conclusion

I am pleased to see that iPadOS gains the support of trackpad. I hope we will see Xcode running on iPadOS pretty soon, and iPad will replace Macbook. For now, let’s support trackpad and mouse in our apps. I hope you enjoy the post. Feel free to follow me on Twitter and ask your questions related to this post. Thanks for reading, and see you next week!


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

另一个地球

另一个地球

[美]马克·格雷厄姆、威廉·H·达顿 / 胡泳、徐嫩羽 / 电子工业出版社 / 2015-10-1 / 78

互联网在日常工作和生活中扮演日益重要的角色,互联网将如何重塑社会?本书通过汇集有关互联网文化、经济、政治角色等问题的研究成果,提供了特定社会制度背景下解决这一问题的根本办法。 关于互联网的研究是蓬勃发展的崭新领域,牛津大学互联网研究院(OII)作为创新型的跨学科学院,自成立起就专注于互联网研究。牛津大学互联网研究院关于互联网+社会的系列讲座在一定程度上塑造了互联网+社会。本书内容基于不同学科......一起来看看 《另一个地球》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

html转js在线工具
html转js在线工具

html转js在线工具