24 lines
587 B
Dart
Executable File
24 lines
587 B
Dart
Executable File
import 'package:flutter/material.dart';
|
|
|
|
class CustomFooter extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
padding: EdgeInsets.all(8.0),
|
|
color: Color(0xFFFFFBDE), // Background color of the footer
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Text(
|
|
'Copyright @ ${DateTime.now().year} Nhance',
|
|
style: TextStyle(
|
|
fontSize: 14,
|
|
color: Colors.grey[600], // Text color
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|