import 'package:flutter/material.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:news_getx/theme/app_colors.dart'; AppBar transparentAppBar({ Widget? title, Widget? leading, List? actions, }) { return AppBar( backgroundColor: Colors.transparent, elevation: 0, centerTitle: true, title: title, leading: leading, actions: actions, ); } /// 10像素 Divider Widget divider10Px({Color bgColor = AppColors.secondaryElement}) { return Container( height: 10.w, decoration: BoxDecoration( color: bgColor, ), ); }