SwiftUI:制作评价按钮

以下是我们今天要创建的内容。在本教程中,你将能够在你的应用程序中使用这个弹出评论按钮,根据需求对类似服务或质量进行评价。

Popup_Review_Button_SwiftUI_Crop.png

开始

创建一个新的名为ReviewButton的SwiftUI文件来生成一个模板,这个视图将把所有东西联系在一起。一旦我们完成了按钮的构建,我们将把它添加到我们的应用程序中。

import SwiftUI

struct ReviewButton: View {
    var body: some View {
        Text("Hello, World!")
    }
}

struct ReviewButton_Previews: PreviewProvider {
    static var previews: some View {
        ReviewButton()
    }
}

视图分解

我们将把这个ReviewButton分解为两部分。第一个是星Image和“Rate This”Text,第二个是弹出的5颗星。

Decomposition_SwiftUI-1.png

很明显,在这个项目中会有很多Star出现,所以让我们继续创造一个对我们有利的Star按钮。

  1. 再创建一个SwiftUI视图命名为StarIcon

  2. StarIcon添加一个属性变量filled

    var filled: Bool = false
    
  3. 用一个Image替换模版中的代码,用于显示一个star。这里的关键是改变使用系统提供的star.fillstar图标。我们将使用刚才定义的属性来决定。

    Image(systemName: filled ? "star.fill" : "star")
    
  4. 然后我们设置StarIcon中的Image是否填充颜色

    Image(systemName: filled ? "star.fill" : "star")
    .foregroundColor(filled ? Color.yellow : Color.black.opacity(0.6))
    

组合一下代码,如下:

import SwiftUI

struct RatingIcon: View {
    
    var filled:Bool = true
    
    var body: some View {
        Image(systemName: filled ? "star.fill" : "star")
            .foregroundColor(filled ? Color.yellow : Color.black.opacity(0.6))
    }
}

struct RatingIcon_Previews: PreviewProvider {
    static var previews: some View {
        RatingIcon(filled: true)
    }
}
image.png

使用Star

就像我之前说的,我们要先创建Star星号和Label标签,然后是Popup。

回到ReviewButton,让我们开始第一部分。

替换body中的代码:

Button(action: {
    // Empty for now...
}) {
    VStack(alignment: .center, spacing: 8) {
        //Star Icon and Label Here...
        StarIcon()
        Text("Rate This")
            .foregroundColor(Color.black)
            .font(Font.system(size: 11, weight: .semibold, design: .rounded))
    }
}
ReviewButton_Part1.png

创建Popup

现在我们要创建一个显示5颗星组的弹出窗口。我们将重用之前创建的StarIcon

  1. RatingButton视图中,像这样在Button的顶部添加一个覆盖层。
Button(action: {
    // Empty for now...
}) {
    VStack(alignment: .center, spacing: 8) {
        //Star Icon and Label Here...
        StarIcon()
        Text("Rate This")
            .foregroundColor(Color.black)
            .font(Font.system(size: 11, weight: .semibold, design: .rounded))
    }
}.overlay( /* Star Icons Here */ )
  1. 使用HStack将五个StarIcons放在一起。确保对齐方式为center,并且HStack使用的spacing值为4。
.overlay(
    HStack(alignment: .center, spacing: 4) {
        RatingIcon(filled: false)
        RatingIcon(filled: false)
        RatingIcon(filled: false)
        RatingIcon(filled: false)
        RatingIcon(filled: false)
    }
)
  1. 现在让我们给弹出框添加一些样式padding background cornerRadius shadow
.overlay(
    HStack(alignment: .center, spacing: 4) {
        RatingIcon(filled: false)
        RatingIcon(filled: false)
        RatingIcon(filled: false)
        RatingIcon(filled: false)
        RatingIcon(filled: false)
    } // Start styling the popup...
    .padding(.all, 12)
    .background(Color.white)
    .cornerRadius(10)
    .shadow(color: Color.black.opacity(0.1), radius: 20, x: 0, y: 0)
)
  1. 现在将弹出窗口向上偏移,这样它就不会直接位于按钮的顶部。
.overlay(
  HStack(alignment: .center, spacing: 4) {
      RatingIcon(filled: false)
      RatingIcon(filled: false)
      RatingIcon(filled: false)
      RatingIcon(filled: false)
      RatingIcon(filled: false)
  }
  .padding(.all, 12)
  .background(Color.white)
  .cornerRadius(10)
  .shadow(color: Color.black.opacity(0.1), radius: 20, x: 0, y: 0)
  .offset(x: 0, y: -70) // Move the view above the button
)
ReviewButton_Popup.png

显示弹出框

接下来,我们需要隐藏弹出窗口,直到点击按钮。为ReviewButton添加bool属性,用于控制弹出窗口的状态。

@State var popupOpen:Bool = false

现在回到我们之前声明的Button。将此代码片段添加到action参数中。

Button(action: {
    withAnimation { self.popupOpen = !self.popupOpen }
})

然后将这些代码添加到overlay覆盖层内的HStack中,以调整不透明度opacity。你应该把它放在我们设置覆盖的偏移量的下面。

.opacity(popupOpen ? 1.0 : 0)

现在让我们尝试一下吧!

ReviewButton_Popup_SwiftUI.gif

添加评论功能

接下来,我们需要根据用户评价开始给星星上色。为了跟踪这一点,添加一个属性来跟踪星级评级。

@State var stars:Int = 0

我们将使用这个属性给按钮和弹出框上的星号改变颜色。让我们修改代码来反映这一点。

  1. 如果当前星级评分大于0,则将按钮内的StarIcon更改为黄色。
// Inside the Button
VStack(alignment: .center, spacing: 8) {
    //Star Icon and Label Here...
    StarIcon(filled: stars > 0)
    // "Rate This" Label Below
  1. 也可以修改弹出窗口覆盖层内的StarIcons来改变颜色。
HStack(alignment: .center, spacing: 4) {
    RatingIcon(filled: stars > 0)
    RatingIcon(filled: stars > 1)
    RatingIcon(filled: stars > 2)
    RatingIcon(filled: stars > 3)
    RatingIcon(filled: stars > 4)
}

既然StarIcons将随着评级的变化而改变颜色,我们需要允许用户选择评级。我们会使用DragGesture来实现这个。

在我们声明popupOpenstars属性的下面,创建一个DragGesture。将minimumDistance设置为0,将coordinateSpace设置为.local

var gesture: some Gesture {
    return DragGesture(minimumDistance: 0, coordinateSpace: .local)
        .onChanged({ val in
            // Update Rating Here
        })
        .onEnded { val in
           // Update Rating Here
        }
}

最后,要做的最后一件事是根据用户的点击或拖动的x位置计算已经选择了多少颗星星。

在上面声明一个闭包,返回DragGesture,并让它接受x位置的CGFloat。然后,我们将快速计算确定用户选择了哪个StarIcon并更新状态。

let updateRating: (CGFloat,RatingButton)->() = { x,this in
    let percent = max((x / 110.0), 0.0)
    this.stars = min(Int(percent * 5.0) + 1, 5)
}

然后调用我们之前设置的onChangedonEnded函数。

return DragGesture(minimumDistance: 0, coordinateSpace: .local)
.onChanged({ val in
    updateRating(val.location.x,self)
})
.onEnded { val in
    updateRating(val.location.x,self)
    DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
        withAnimation {
            self.popupOpen = false
        }
    }
}

最后要做的是在弹出框中添加手势!只需在HStack之后直接添加这段代码。

HStack(alignment: .center, spacing: 4) {
    RatingIcon(filled: stars > 0)
    RatingIcon(filled: stars > 1)
    RatingIcon(filled: stars > 2)
    RatingIcon(filled: stars > 3)
    RatingIcon(filled: stars > 4)
}
.gesture(gesture)

最终效果

ReviewButton_SwiftUI_Final.gif

完整代码如下:

struct RatingIcon: View {
    var filled: Bool = false
    
    var body: some View {
        Image(systemName: filled ? "star.fill" : "star")
            .foregroundColor(filled ? Color.yellow : Color.black.opacity(0.6))
    }
}

struct ReviewButton: View {
    @State var popupOpen:Bool = false
    @State var stars:Int = 0
    
    let updateRating: (CGFloat,ReviewButton)->() = { x,this in
        let percent = max((x / 110.0), 0.0)
        this.stars = min(Int(percent * 5.0) + 1, 5)
    }
    
    var gesture: some Gesture {
        return DragGesture(minimumDistance: 0, coordinateSpace: .local)
            .onChanged({ val in
                // Update Rating Here
                updateRating(val.location.x,self)
            })
            .onEnded { val in
               // Update Rating Here
                updateRating(val.location.x,self)
                    DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
                        withAnimation {
                            self.popupOpen = false
                        }
                    }
            }
    }
    
    var body: some View {
        Button(action: {
            withAnimation { self.popupOpen = !self.popupOpen }
        }) {
            VStack(alignment: .center, spacing: 8) {
                //Star Icon and Label Here...
                RatingIcon(filled: stars > 0)
                    .frame(width: 50, height: 50)
                Text("Rate This")
                    .foregroundColor(Color.black)
                    .font(Font.system(size: 11, weight: .semibold, design: .rounded))
            }
        }
        .overlay(
            HStack(alignment: .center, spacing: 4) {
                    RatingIcon(filled: stars > 0)
                    RatingIcon(filled: stars > 1)
                    RatingIcon(filled: stars > 2)
                    RatingIcon(filled: stars > 3)
                    RatingIcon(filled: stars > 4)
                }
                .padding(.all, 12)
                .background(Color.white)
                .cornerRadius(10)
                .shadow(color: Color.black.opacity(0.1), radius: 20, x: 0, y: 0)
                .offset(x: 0, y: -70)
                .opacity(popupOpen ? 1.0 : 0)
                .gesture(gesture)
        )
    }
}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,968评论 6 482
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,601评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,220评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,416评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,425评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,144评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,432评论 3 401
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,088评论 0 261
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,586评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,028评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,137评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,783评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,343评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,333评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,559评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,595评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,901评论 2 345

推荐阅读更多精彩内容