Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions game/assets/icons/pluscircle_red.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions game/lib/constants/colors.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ class AppColors {
static const Color greenDark = Color(0xFF31B346);

// Backgrounds
static const Color white = Color(0xFFFFFFFF);
static const Color transparent = Color(0x00000000);
static const Color warmWhite = Color(0xFFFFF8F1);
static const Color cream = Color(0xFFF9EDDA);
static const Color quizBackground = Color(0xFFF9F5F1);
Expand Down Expand Up @@ -71,8 +73,12 @@ class AppColors {
static const Color black20 = Color(0x33000000);
static const Color black25 = Color(0x40000000);
static const Color black30 = Color(0x4D000000);
static const Color black50 = Color(0x80000000);
static const Color black80 = Color(0xCC000000);

/// White at 50% opacity (e.g. hint text on dark field fills).
static const Color white50 = Color(0x80FFFFFF);

// Extended grays
static const Color silverGray = Color(0xFFC6C6C6);
static const Color disabledGray = Color(0xFFBABABA);
Expand Down
14 changes: 14 additions & 0 deletions game/lib/journeys/challenge_creation_page.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import 'package:flutter/material.dart';

/// Placeholder stage, next step after journey creation
class ChallengeCreationPage extends StatelessWidget {
const ChallengeCreationPage({super.key, this.createdEventId});

/// Server id of the `EventBase` with `isJourney == true`, if creation succeeded.
final String? createdEventId;

@override
Widget build(BuildContext context) {
return SizedBox();
}
}
Loading
Loading