login_page_agreed_widget.dart 827 Bytes
import 'package:flutter/material.dart';

class LoginPageAgreedWidget extends StatelessWidget {
  const LoginPageAgreedWidget({super.key});

  @override
  Widget build(BuildContext context) {
    return Text.rich(
      TextSpan(
        children: [
          TextSpan(
            text: '同意',
            style: TextStyle(color: Color(0xFF999999), fontSize: 14),
          ),
          TextSpan(
            text: '《隐私保障》',
            style: TextStyle(color: Color(0xFF7691FA), fontSize: 14),
          ),
          TextSpan(
            text: '和',
            style: TextStyle(color: Color(0xFF999999), fontSize: 14),
          ),
          TextSpan(
            text: '《用户协议》',
            style: TextStyle(color: Color(0xFF7691FA), fontSize: 14),
          ),
        ],
      ),
    );
  }
}