Как сделать нижнюю страницу интерактивной?

главная страница
import 'package:firebase_example/Ui/Books.dart';
import 'package:firebase_example/Ui/GuillotineMenu.dart';
import 'package:flutter/material.dart';
class Home extends StatefulWidget {
@override
_HomeState createState() => _HomeState();
}
class _HomeState extends State {
final GlobalKey _drawerKey = new GlobalKey();
@override
Widget build(BuildContext context) {
return new MaterialApp(
debugShowCheckedModeBanner: false,
home: SafeArea(
top: false,
bottom: false,
child: new Container(
child: new Stack(
alignment: Alignment.topLeft,
children: [
Books(),
GuillotineMenu(),
],
),
),
),
);
Подробнее здесь: https://stackoverflow.com/questions/521 ... ck-flutter