All constructer of Scaffold class in flutter
import 'package:flutter/material.dart' ; class practiingflutter extends StatefulWidget { const practiingflutter ({ Key ? key}) : super (key: key); @override State < practiingflutter > createState () => _practiingflutterState (); } class _practiingflutterState extends State < practiingflutter > { @override Widget build ( BuildContext context) { int _selectedIndex = 0 ; const List < Widget > _widgetOptions = < Widget >[ Text ( 'Home Page' , style: TextStyle (fontSize: 35 , fontWeight: FontWeight . bold )), Text ( 'Search Page' , style: TextStyle (fontSize: 35 , fontWeight: FontWeight . bold )), Text ( 'Profile Page' , style: TextStyle (fontSize: 35 , fontWeight: FontWeight . bold )), ]; void _onItemTapped ( int index) { setState(() { _selectedIndex = index; }); } return Scaffold ( // COnstructoer and properties of Scaffold appBar: AppBar ( ...