20 lines
422 B
Dart
20 lines
422 B
Dart
// Flutter imports:
|
|
import 'package:flutter/material.dart';
|
|
|
|
// Project imports:
|
|
import 'package:invoiceninja_flutter/ui/dashboard/dashboard_screen_vm.dart';
|
|
|
|
class DashboardOverview extends StatelessWidget {
|
|
const DashboardOverview({
|
|
Key? key,
|
|
required this.viewModel,
|
|
}) : super(key: key);
|
|
|
|
final DashboardVM viewModel;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return new Container();
|
|
}
|
|
}
|