mirror of
https://github.com/tonytins/bullseye.git
synced 2025-06-26 02:44:42 -04:00
Added prompt and control widgets
- Updated iOS portion of project - Always to default landscape
This commit is contained in:
parent
90dafce466
commit
9e475f6a34
20 changed files with 328 additions and 7 deletions
17
lib/prompt.dart
Normal file
17
lib/prompt.dart
Normal file
|
@ -0,0 +1,17 @@
|
|||
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")
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue