25 lines
561 B
Dart
25 lines
561 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class EditProfileView extends StatefulWidget {
|
|
@override
|
|
_EditProfileViewState createState() => _EditProfileViewState();
|
|
}
|
|
|
|
class _EditProfileViewState extends State<EditProfileView> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
backgroundColor: Colors.white,
|
|
iconTheme: IconThemeData(
|
|
color: Color(0xFF545454), //change your color here
|
|
)
|
|
),
|
|
body: Container(
|
|
width: double.infinity,
|
|
|
|
),
|
|
);
|
|
}
|
|
}
|