Design Timeline Page using Flutter Final Code: import 'package:flutter/cupertino.dart' ; import 'package:flutter/gestures.dart' ; import 'package:flutter/material.dart' ; class Timeline_Page extends StatefulWidget{ Timeline_PageState createState()=> Timeline_PageState (); } class Timeline_PageState extends State<Timeline_Page>{ @override Widget build(BuildContext context) { return DefaultTabController ( initialIndex: 0 , // default is 0 length: 4 , // Number of Tabs child: Scaffold ( appBar: AppBar (title: Text ( "joe_root" ), backgroundColor: Colors. indigoAccent , actions: [ IconButton ( icon: Icon (Icons. send_outlined ,), onPressed: ()=>{})],), body: SingleChildScrollView ( child: Column ( crossAxisAlignment: CrossAxisAlignment. start , mainAxisSize: MainAxisSize. max , children: [ SizedBox ...