BusinessAppFlutter/openclosenew/lib/25-addphotos1.dart
2022-06-22 12:17:52 +05:30

54 lines
1.4 KiB
Dart

import 'package:flutter/material.dart';
import 'FontFamily.dart';
import 'colors.dart';
import 'fontsize.dart';
class addphotos1 extends StatefulWidget {
const addphotos1({Key? key}) : super(key: key);
@override
State<addphotos1> createState() => _addphotos1State();
}
class _addphotos1State extends State<addphotos1> {
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Padding(
padding: const EdgeInsets.only(left: 20, right: 15, top: 10),
child: Column(
children: [
Row(
children: [
InkWell(
onTap: () {
Navigator.pop(context);
},
child: Icon(
Icons.arrow_back,
color: DarkGray,
size: 24,
),
),
SizedBox(width: 20),
Text(
'Add Photos',
style: TextStyle(
fontFamily: Font,
fontStyle: FontStyle.normal,
fontWeight: FontWeight.w500,
fontSize: HeadText,
color: DarkGray,
),
),
],
),
],
),
),
),
);
}
}