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