프로젝트 최초 커밋
This commit is contained in:
18
lib/screens/sidebar/widgets/sidebar_menu_footer.dart
Normal file
18
lib/screens/sidebar/widgets/sidebar_menu_footer.dart
Normal file
@@ -0,0 +1,18 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
// 사이드바 푸터 위젯
|
||||
class SidebarMenuFooter extends StatelessWidget {
|
||||
const SidebarMenuFooter({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
height: 48,
|
||||
alignment: Alignment.center,
|
||||
child: const Text(
|
||||
'© 2025 CClabs. All rights reserved.',
|
||||
style: TextStyle(fontSize: 11, color: Colors.black), // 블랙으로 변경
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user