From acf3fb71688cf2ae54c1280facfe43424883ca3e Mon Sep 17 00:00:00 2001 From: Kelvin Lim Date: Tue, 21 Dec 2021 14:16:52 -0600 Subject: [PATCH] update instructions and server address --- lib/instructions.dart | 19 ++++++++++--------- lib/server.dart | 2 +- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/lib/instructions.dart b/lib/instructions.dart index bbe0a99..0a0c6fc 100644 --- a/lib/instructions.dart +++ b/lib/instructions.dart @@ -15,17 +15,18 @@ class SecondScreen extends StatelessWidget { child: Padding( padding: const EdgeInsets.all(8.0), child: new Text( - """ - In this task, you will need to find the hidden pathway. + """ +In this task, you will need to find the hidden pathway. - You start by tapping on the tile in the top left corner, then tap on tiles one at a time to find the hidden path to the tile in the bottom right corner. - A checkmark in a green box means that you chose correctly. An X in a red box means you chose incorrectly. After a wrong move, you must tap on the last correct tile you chose, then choose a tile in a different direction. \ +You start by tapping on the tile in the top left corner, then tap on tiles one at a time to find the hidden path to the tile in the bottom right corner. + +A checkmark in a green box means that you chose correctly. An X in a red box means you chose incorrectly. After a wrong move, you must tap on the last correct tile you chose, then choose a tile in a different direction. \ - The rules for the task are: - Only move to adjacent tiles (left, right, up, or down). - Do not move diagonally. - Do not tap on the same tile twice. - Move as quickly and as accurately as you can""", +The rules for the task are: + 1. Only move to adjacent tiles (left, right, up, or down). + 2. Do not move diagonally. + 3. Do not tap on the same tile twice. + 4. Move as quickly and as accurately as you can""", style: new TextStyle(fontSize: 20, height:1.5)), ), ), diff --git a/lib/server.dart b/lib/server.dart index adc7175..5cce552 100644 --- a/lib/server.dart +++ b/lib/server.dart @@ -3,7 +3,7 @@ import 'package:json_annotation/json_annotation.dart'; import 'dart:async'; import 'dart:convert'; -String serverURL = 'https://x0-29.psych.umn.edu/lnpireceiver/posts'; +String serverURL = 'https://lnpitest.northcentralus.cloudapp.azure.com/dend/posts'; @JsonSerializable(nullable: false) Data _$DataFromJson(Map json) {