import 'package:driverapp/uitl/translations_delegate_base.dart'; import 'package:driverapp/widgets/others/app_scaffold_widget.dart'; import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; class SettingPage extends StatelessWidget { @override Widget build(BuildContext context) { return AppScaffold( isShowAppBar: true, appBarColor: Theme.of(context).primaryColor, arrowColor: Colors.white, titleColor: Colors.white, body: Container( child: Column( children: [ CircleAvatar( radius: 25.5, backgroundColor: Color(0xff30B7B9), child: CircleAvatar( backgroundColor: Color(0xff30B7B9), maxRadius: 26.0, child: Image.asset( 'assets/images/driver.png', fit: BoxFit.contain, ), ), ), ], ), ), ); } }