Slide 63
Slide 63 text
return Scaffold(
backgroundColor: Colors.white,
appBar: AppBar(
title: Text(widget.title),
),
body: const Center(
child: Stack(
children: [
Text(
'Hello, FlutterKaigi 2024 LT!',
style: TextStyle(fontSize: 24),
),
Text(
'Hello, FlutterKaigi 2024 LT!',
style: TextStyle(fontSize: 24),
),
],
),
),
);