import 'package:flutter/material.dart'; void main() { MaterialApp app = MaterialApp( home: Scaffold( appBar: AppBar( title: const Text('Quotes'), backgroundColor: Colors.deepPurple, ), body: const Padding( padding: EdgeInsets.all(20), child: Text('Content'), ), bottomNavigationBar: BottomAppBar( color: Colors.deepPurpleAccent, child: Padding( padding: const EdgeInsets.all(20), child: Row( children: const [ Text('bottom content'), Text('In the row!') ], ), ), ), ), ); runApp(app); }