mucke/lib/presentation/pages/library.dart
2020-03-20 16:17:02 +01:00

17 lines
No EOL
392 B
Dart

import 'package:flutter/material.dart';
class LibraryPage extends StatefulWidget {
LibraryPage({Key key}) : super(key: key);
@override
_LibraryPageState createState() => _LibraryPageState();
}
class _LibraryPageState extends State<LibraryPage> {
@override
Widget build(BuildContext context) {
return Container(
child: Center(child: Text("Library Page"),),
);
}
}