28 lines
660 B
Dart
28 lines
660 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:invoiceninja/keys.dart';
|
|
import 'package:invoiceninja/ui/app/custom_drawer_vm.dart';
|
|
|
|
class ClientList extends StatelessWidget {
|
|
ClientList() : super(key: NinjaKeys.clientList);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return new Scaffold(
|
|
appBar: new AppBar(
|
|
title: new Text('Clients'),
|
|
),
|
|
drawer: new CustomDrawerVM(),
|
|
body: new Center(
|
|
child: new Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
new Text(
|
|
'THE CLIENTS',
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|