import 'package:dating_touchme_app/components/page_appbar.dart'; import 'package:flutter/material.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; class HelpInfoPage extends StatefulWidget { const HelpInfoPage({super.key}); @override State createState() => _HelpInfoPageState(); } class _HelpInfoPageState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: PageAppbar(title: "充值了会员为什么无法畅聊"), body: SingleChildScrollView( child: Container( padding: EdgeInsets.symmetric( vertical: 22.w, horizontal: 15.w ), child: Column( children: [ Text( "" ), Row( mainAxisAlignment: MainAxisAlignment.spaceAround, children: [ Container( width: 130.w, height: 37.w, decoration: BoxDecoration( borderRadius: BorderRadius.all(Radius.circular(9.w)), border: Border.all( width: 1, color: const Color.fromRGBO(144, 144, 144, 1) ) ), child: Row( mainAxisAlignment: MainAxisAlignment.center, children: [ Icon( Icons.thumb_up_off_alt, size: 22.w, color: const Color.fromRGBO(144, 144, 144, 1), ), SizedBox(width: 14.w,), Text( "有用", style: TextStyle( fontSize: 16.w, color: const Color.fromRGBO(144, 144, 144, 1), fontWeight: FontWeight.w500 ), ) ], ), ), Container( width: 130.w, height: 37.w, decoration: BoxDecoration( borderRadius: BorderRadius.all(Radius.circular(9.w)), border: Border.all( width: 1, color: const Color.fromRGBO(144, 144, 144, 1) ) ), child: Row( mainAxisAlignment: MainAxisAlignment.center, children: [ Icon( Icons.thumb_down_off_alt, size: 22.w, color: const Color.fromRGBO(144, 144, 144, 1), ), SizedBox(width: 14.w,), Text( "没用", style: TextStyle( fontSize: 16.w, color: const Color.fromRGBO(144, 144, 144, 1), fontWeight: FontWeight.w500 ), ) ], ), ), ], ) ], ), ), ), ); } }