dicee-flutter/lib/main.dart

62 lines
1.3 KiB
Dart
Raw Normal View History

2020-07-15 16:56:48 +00:00
import 'dart:math';
2019-03-05 11:08:12 +00:00
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(),
),
),
);
}
2020-07-15 16:56:48 +00:00
class DicePage extends StatefulWidget {
@override
_DicePageState createState() => _DicePageState();
}
class _DicePageState extends State<DicePage> {
int leftDiceNumber = 1;
int rightDiceNumber = 1;
2019-03-05 11:08:12 +00:00
@override
Widget build(BuildContext context) {
2020-07-15 16:56:48 +00:00
return Center(
child: Row(
children: <Widget>[
Expanded(
child: FlatButton(
child: Image.asset('images/dice$leftDiceNumber.png'),
onPressed: () {
updateRandomValues();
},
),
),
Expanded(
child: FlatButton(
child: Image.asset('images/dice$rightDiceNumber.png'),
onPressed: () {
updateRandomValues();
},
),
),
],
),
);
}
void updateRandomValues() {
setState(() {
leftDiceNumber = Random().nextInt(6) + 1;
rightDiceNumber = Random().nextInt(6) + 1;
});
2019-03-05 11:08:12 +00:00
}
}