import 'package:flutter/material.dart'; import 'package:userstory2translate/localization/language_constants.dart'; class AboutPage extends StatefulWidget { AboutPage({Key key}) : super(key: key); @override _AboutPageState createState() => _AboutPageState(); } class _AboutPageState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(getTranslated(context, 'about_us')), ), body: Container( padding: EdgeInsets.all(20), child: Center( child: Text(getTranslated(context, 'about')), ), ), ); } }