登录页面的用户协议和隐私政策
RichText(
text: TextSpan(children: [
TextSpan(
text:
'By registering or logging in to an account,you agree to our ',
style:
AppTextStyles.body2_12_Regular.color_font_color_tertiary,
),
TextSpan(
text: 'Terms & Conditions',
style: AppTextStyles.body2_12_Regular.color_primary_color1,
recognizer: TapGestureRecognizer()
..onTap = () {
// 查看 服务条款
}),
TextSpan(
text: ' and ',
style:
AppTextStyles.body2_12_Regular.color_font_color_tertiary,
),
TextSpan(
text: 'Privacy Statement.',
style: AppTextStyles.body2_12_Regular.color_primary_color1,
recognizer: TapGestureRecognizer()
..onTap = () {
// 查看 服务条款
}),
]),
),