mirror of
https://github.com/tonytins/bullseye.git
synced 2025-03-15 12:21:21 +00:00
25 lines
649 B
Dart
25 lines
649 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_platform_widgets/flutter_platform_widgets.dart';
|
|
|
|
class Score extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: <Widget>[
|
|
PlatformButton(
|
|
child: PlatformText("Start Over"),
|
|
onPressed: () {},
|
|
),
|
|
PlatformText("Score:"),
|
|
PlatformText("999"),
|
|
PlatformText("Round:"),
|
|
PlatformText("999"),
|
|
PlatformButton(
|
|
child: PlatformText("Info"),
|
|
onPressed: () {},
|
|
)
|
|
],
|
|
);
|
|
}
|
|
}
|