ClassZoo is a Flutter app (iOS/Android/Web) backed by Supabase for auth, data, and storage. The Flutter project root is src/.
src/
├── lib/
│ ├── main.dart # Entry point
| public class StreamItemDTO | |
| { | |
| public required long Id { get; set; } | |
| public required string Type { get; set; } | |
| public long? MediaId { get; set; } | |
| public required string Title { get; set; } | |
| public required string Description { get; set; } | |
| public required DateTime Timestamp { get; set; } |
| IRandomization random = new BasicRandomization(); | |
| int populationSize = 25; | |
| int dimensions = 1; | |
| double minX = -10; | |
| double maxX = 10; | |
| var particles = new List<IParticle>(); | |
| for (int i = 0; i < populationSize; i++) |
| // A* pathfinding algorithm | |
| function astar(start, end) { | |
| const openSet = []; | |
| const closedSet = []; | |
| openSet.push(start); | |
| while (openSet.length > 0) { | |
| let currentNode = openSet[0]; | |
| // Find the node with the lowest total cost in the open set | |
| for (let i = 1; i < openSet.length; i++) { |
| using System; | |
| using Microsoft.Extensions.DependencyInjection | |
| using Microsoft.Extensions.Logging; | |
| namespace MyApp | |
| { | |
| internal class Program | |
| { | |
| private static void Main(string[] args) | |
| { |
| using System; | |
| using Microsoft.EntityFrameworkCore; | |
| using Microsoft.Extensions.Configuration; | |
| using Microsoft.Extensions.DependencyInjection | |
| namespace MyApp | |
| { | |
| internal class Program | |
| { | |
| private static void Main(string[] args) |
| using Microsoft.Extensions.DependencyInjection | |
| namespace MyApp | |
| { | |
| internal class Program | |
| { | |
| private static void Main(string[] args) | |
| { | |
| var services = CreateServices(); |
| using Microsoft.EntityFrameworkCore; | |
| using System; | |
| using System.Linq; | |
| public class Employee | |
| { | |
| public int EmployeeId { get; set; } | |
| public string FirstName { get; set; } | |
| public string LastName { get; set; } | |
| } |
| using System; | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| try | |
| { | |
| int[] numbers = new int[5]; | |
| int value = numbers[10]; |
| using System; | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| try | |
| { | |
| int[] numbers = new int[5]; | |
| int value = numbers[10]; |