13 lines
261 B
Dart
13 lines
261 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class ContactScreen extends StatelessWidget {
|
||
|
const ContactScreen({super.key});
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Material(
|
||
|
color: Theme.of(context).colorScheme.surface,
|
||
|
);
|
||
|
}
|
||
|
}
|