mirror of
https://github.com/tonytins/bullseye.git
synced 2025-03-15 12:21:21 +00:00
17 lines
377 B
Dart
17 lines
377 B
Dart
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")
|
|
],
|
|
);
|
|
}
|
|
}
|