和单纯的颜色相比,运用渐变技术能使画面更加丰富,给人更强的视觉冲击力。本节课演示线性渐变的使用。使用LinearGradient绘制线形颜色渐变的背景。
示例代码:
Text("SwifUI Gradient") .font(.system(size: 36)) .padding() //设置文本视图的间距,增加文本视图的内边距。 .foregroundColor(.white) .background(LinearGradient(gradient: Gradient(colors: [.orange, .red, .purple]), startPoint: .topLeading, endPoint: .bottomTrailing)) //给文本视图添加一个背景,线性渐变将被放入小括号之内。 //创建一个线性渐变,起始颜色为橙色,中间颜色为红色,终点颜色为紫色。 //渐变的起点位于文本视图的左上角,渐变的终点位于文本视图的右下角。 }