23 lines
449 B
Dart
23 lines
449 B
Dart
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
class ProfileFooter extends StatelessWidget {
|
|
final String text;
|
|
|
|
const ProfileFooter({
|
|
super.key,
|
|
required this.text,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Padding(
|
|
padding: EdgeInsets.only(top: 12.sp),
|
|
child: Text(
|
|
text,
|
|
textAlign: TextAlign.justify,
|
|
),
|
|
);
|
|
}
|
|
}
|