22 lines
484 B
Dart
22 lines
484 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class CompositionPage extends StatelessWidget {
|
||
|
const CompositionPage({Key? key}) : super(key: key);
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Scaffold(
|
||
|
backgroundColor: Colors.black,
|
||
|
appBar: AppBar(
|
||
|
title: const Text('Composition Page'),
|
||
|
),
|
||
|
body: Center(
|
||
|
child: const Text(
|
||
|
'Composition Page',
|
||
|
style: TextStyle(fontSize: 24),
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|