bullseye/lib/prompt.dart

18 lines
377 B
Dart
Raw Normal View History

import 'package:flutter/material.dart';
class Prompt extends StatelessWidget {
Prompt({@required this.targetValue});
final int? targetValue;
@override
Widget build(BuildContext context) {
// TODO: implement build
return Column(
children: <Widget>[
Text("PUT THE BULLSEYE AS CLOSE YOU CAN TO"),
Text("$targetValue")
],
);
}
}