17 lines
No EOL
392 B
Dart
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"),),
|
|
);
|
|
}
|
|
} |