import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; import 'package:huixiang/generated/l10n.dart'; class HotArticleDetailsPage extends StatefulWidget { @override State createState() { return _HotArticleDetailsPage(); } } class _HotArticleDetailsPage extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( backgroundColor: Color(0xFFF7F7F7), elevation: 0, title: Text( // S.of(context).wenzhangxiangqing, "文章详情", style: TextStyle( color: Colors.black, fontWeight: FontWeight.bold, ), ), centerTitle: false, leading: GestureDetector( onTap: () { Navigator.of(context).pop(); }, child: Container( alignment: Alignment.centerRight, margin: EdgeInsets.only(left: 10), padding: EdgeInsets.all(6), child: Icon( Icons.arrow_back_ios, color: Colors.black, size: 24, ), ), ), titleSpacing: 2, leadingWidth: 56, ), ); } }