You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
114 lines
4.5 KiB
114 lines
4.5 KiB
import 'package:auto_size_text/auto_size_text.dart';
|
|
import 'package:flutter/Material.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:justmusic/values/constants.dart';
|
|
|
|
class EditablePostComponent extends StatefulWidget {
|
|
const EditablePostComponent({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<EditablePostComponent> createState() => _EditablePostComponentState();
|
|
}
|
|
|
|
class _EditablePostComponentState extends State<EditablePostComponent> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ClipRRect(
|
|
borderRadius: BorderRadius.circular(25),
|
|
child: Container(
|
|
constraints: BoxConstraints(maxWidth: 400),
|
|
width: double.infinity,
|
|
color: warningBttnColor,
|
|
child: Column(
|
|
children: [
|
|
AspectRatio(
|
|
aspectRatio: 1 / 1,
|
|
child: Container(
|
|
decoration: BoxDecoration(
|
|
// add border
|
|
border: Border.all(width: 3.0, color: grayColor),
|
|
// set border radius
|
|
borderRadius: BorderRadius.circular(20),
|
|
),
|
|
child: ClipRRect(
|
|
borderRadius: BorderRadius.circular(18),
|
|
// implement image
|
|
child: const Image(
|
|
image: AssetImage("assets/images/exemple_cover.png"),
|
|
fit: BoxFit.cover,
|
|
width: double.infinity,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsets.fromLTRB(15, 25, 15, 25),
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
AutoSizeText(
|
|
"France, Lyon",
|
|
style: GoogleFonts.plusJakartaSans(
|
|
color: Colors.white, fontSize: 13.sp),
|
|
maxFontSize: 20,
|
|
),
|
|
Image(
|
|
image: AssetImage("assets/images/camera_icon.png"),
|
|
width: 30,
|
|
),
|
|
AutoSizeText(
|
|
"10 Juil. 2023",
|
|
style: GoogleFonts.plusJakartaSans(
|
|
color: Colors.white, fontSize: 13.sp),
|
|
maxFontSize: 20,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
Padding(
|
|
padding: EdgeInsets.fromLTRB(15, 0, 10, 25),
|
|
child: SizedBox(
|
|
width: double.infinity,
|
|
child: TextFormField(
|
|
keyboardAppearance: Brightness.dark,
|
|
minLines: 1,
|
|
cursorColor: primaryColor,
|
|
style: GoogleFonts.plusJakartaSans(
|
|
color: Colors.white,
|
|
fontSize: 13,
|
|
fontWeight: FontWeight.w300),
|
|
maxLines: 4,
|
|
maxLength: 120,
|
|
decoration: InputDecoration(
|
|
counterStyle: GoogleFonts.plusJakartaSans(
|
|
color: grayText, fontSize: 9),
|
|
focusedBorder: const OutlineInputBorder(
|
|
borderSide:
|
|
BorderSide(width: 0, color: Colors.transparent),
|
|
borderRadius:
|
|
BorderRadius.all(Radius.circular(10))),
|
|
contentPadding:
|
|
const EdgeInsets.only(top: 0, bottom: 0, left: 0),
|
|
fillColor: Colors.transparent,
|
|
filled: true,
|
|
focusColor: Colors.transparent,
|
|
enabledBorder: const OutlineInputBorder(
|
|
borderSide:
|
|
BorderSide(width: 0, color: Colors.transparent),
|
|
borderRadius:
|
|
BorderRadius.all(Radius.circular(10))),
|
|
hintText: 'Description...',
|
|
hintStyle: GoogleFonts.plusJakartaSans(
|
|
color: grayText,
|
|
fontSize: 13,
|
|
fontWeight: FontWeight.w300),
|
|
),
|
|
),
|
|
)),
|
|
],
|
|
),
|
|
));
|
|
}
|
|
}
|