Sprint: FE Sprint 11
Dates: 2026-06-11 → 2026-06-22
Goal: (active sprint — data as of 2026-06-16, mid-sprint)
Report Generated: 2026-06-16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { useState, useMemo } from 'react'; | |
| import { | |
| Briefcase, | |
| Moon, | |
| Heart, | |
| User, | |
| TrendingUp, | |
| AlertCircle, | |
| Calendar, | |
| Activity, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "module_id": 2, | |
| "title": "The Overworld (Atmosphere & Decorations)", | |
| "objective": "Transform your party space into a pixelated wonderland using cheap and creative materials.", | |
| "decorations": [ | |
| { | |
| "name": "Blocky Terrain", | |
| "materials": [ | |
| "Amazon boxes", | |
| "Brown kraft paper", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "module_id": 6, | |
| "title": "The Boss Fight (The Cake Ceremony)", | |
| "objective": "The grand finale before the party wraps up.", | |
| "cake_details": { | |
| "name": "The Dirt Block Cake", | |
| "base": "Standard chocolate sheet cake or cube-shaped cake", | |
| "layers": [ | |
| { | |
| "element": "Dirt", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:existence/src/app_libs.dart'; | |
| import 'package:flutter/material.dart'; | |
| class ParallaxGridSpike extends StatefulWidget { | |
| const ParallaxGridSpike({super.key}); | |
| @override | |
| State<ParallaxGridSpike> createState() => _ParallaxGridSpikeState(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:math' as math; | |
| import 'package:flutter/material.dart'; | |
| class DropExtraChildren extends StatelessWidget { | |
| final double spacing; | |
| final List<Widget> children; | |
| const DropExtraChildren({ | |
| super.key, | |
| required this.spacing, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| class DropExtraChildren extends StatelessWidget { | |
| final Axis direction; | |
| final double spacing; | |
| final List<Widget> children; | |
| const DropExtraChildren({ | |
| super.key, | |
| this.direction = Axis.horizontal, |
import 'package:flutter/material.dart';
void main() { runApp(SomeWidget()); }
class SomeWidget extends StatefulWidget { @override State createState() => SomeWidgetState(); }
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mport 'package:flutter/material.dart'; | |
| void main() { runApp(SomeWidget()); } | |
| class SomeWidget extends StatefulWidget { @override State createState() => SomeWidgetState(); } | |
| class SomeWidgetState extends State { int count = 0; | |
| void incrementCount() => setState(() => count++); |
NewerOlder