mucke/lib/presentation/pages/library.dart

17 lines
392 B
Dart
Raw Normal View History

2020-03-20 16:17:02 +01:00
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"),),
);
}
}