blob: 9b61bea6ef0e7c600fcbd8d44432e6e1b8629799 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import 'package:flutter/material.dart';
class MediaPage extends StatelessWidget {
const MediaPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
color: Colors.deepPurple.shade50,
constraints: BoxConstraints.expand(),
alignment: Alignment.center,
child: Text(
'Media',
style: Theme.of(context).textTheme.headline1,
),
);
}
}
|