import 'package:flutter/material.dart'; class TutorialPage extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text("Tutorial"), ), body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Text( 'Welcome to the tutorial page!', ), Text( 'This is where you will learn how to use the app.', ), ], ), ), ); } }