Skip to content

Commit

Permalink
update instructions and server address
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvinlim committed Dec 21, 2021
1 parent 7599ab7 commit acf3fb7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
19 changes: 10 additions & 9 deletions lib/instructions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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)),
),
),
Expand Down
2 changes: 1 addition & 1 deletion lib/server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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<String, dynamic> json) {
Expand Down

0 comments on commit acf3fb7

Please sign in to comment.