import 'package:flutter/material.dart'; import 'package:flutter_settings_screens/flutter_settings_screens.dart'; class SettingView extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( centerTitle: false, backgroundColor: Colors.white, title: Text( "Paramètres", style: TextStyle( color: Colors.black, ), ), iconTheme: IconThemeData( color: Color(0xFF545454), //change your color here ), ), body: Padding( padding: const EdgeInsets.all(16.0), child: Column( crossAxisAlignment: CrossAxisAlignment.stretch, children: [ Text( "Compte", style: TextStyle( fontSize: 23, color: Color(0xFFA7A7A7), ), ), Padding( padding: const EdgeInsets.only(top: 8.0, bottom: 8.0), child: Text( "Changer le mot de passe", style: TextStyle( fontSize: 18, color: Colors.black, ), ), ), //Text("Changer le mot de passe") ], ), ), ); } }