Files
dailyou/lib/features/insights/insights_screen.dart
T

13 lines
274 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
class InsightsScreen extends StatelessWidget {
const InsightsScreen({super.key});
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(child: Text('Insights coming soon')),
);
}
}