15 lines
411 B
Dart
15 lines
411 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class DeviceManagePage extends StatelessWidget {
|
|
const DeviceManagePage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Center(
|
|
child: Text(
|
|
'⚙️ 모터, 팬, LED 광원 장비 제어 관리 시스템',
|
|
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold, color: Colors.white60),
|
|
),
|
|
);
|
|
}
|
|
} |