24 lines
426 B
Dart
24 lines
426 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
void main() {
|
||
|
return runApp(
|
||
|
MaterialApp(
|
||
|
home: Scaffold(
|
||
|
backgroundColor: Colors.red,
|
||
|
appBar: AppBar(
|
||
|
title: Text('Dicee'),
|
||
|
backgroundColor: Colors.red,
|
||
|
),
|
||
|
body: DicePage(),
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
class DicePage extends StatelessWidget {
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Container();
|
||
|
}
|
||
|
}
|