part of home_view; class CalculatorTab extends StatelessWidget { final HomeViewModel viewModel; final int index; CalculatorTab(this.viewModel, this.index); @override Widget build(BuildContext context) { return Scaffold( body: Center( child: Column( children: [ Text('CalculatorTab index:$index ${viewModel.currentUser.fullName} ', style: TextStyle(color: Colors.black87)) ], ), )); } }