import 'package:diplomaticquarterapp/widgets/avatar/large_avatar.dart'; import 'package:flutter/material.dart'; import 'package:flutter_html/style.dart'; import 'package:flutter_svg/flutter_svg.dart'; import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart'; class AddAddressPage extends StatefulWidget { @override _AddAddressState createState() => _AddAddressState(); } class _AddAddressState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( centerTitle: true, title: Text(TranslationBase.of(context).addNewAddress, style: TextStyle(color:Colors.white)), backgroundColor: Colors.green, ), body: Container( child: Column( children: [ Container( ), Container( height: 50.0, width: 400.0, color: Colors.transparent, child: Container( decoration: BoxDecoration( border: Border.all( color: Colors.green, style: BorderStyle.solid, width: 1.0 ), color: Colors.green, borderRadius: BorderRadius.circular(10.0) ), child: Center( child: Text( TranslationBase.of(context).save, style: TextStyle( color: Colors.white, fontSize: 20.0, fontWeight: FontWeight.bold, ), ), ), ), ), ], ), ), ); }}