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), // 블랙으로 변경 ), ); } }