Multi-agent AI laboratory with ASP.NET Core 8.0 backend and Flutter frontend. Implements CQRS architecture, OpenAPI contract-first API design. BACKEND: Agent management, conversations, executions with PostgreSQL + Ollama FRONTEND: Cross-platform UI with strict typing and Result-based error handling Co-Authored-By: Jean-Philippe Brule <jp@svrnty.io>
25 lines
573 B
Dart
25 lines
573 B
Dart
import 'package:flutter/material.dart';
|
|
import 'console_landing_page.dart';
|
|
import 'theme.dart';
|
|
|
|
void main() {
|
|
runApp(const MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final textTheme = Theme.of(context).textTheme;
|
|
|
|
return MaterialApp(
|
|
title: 'Svrnty Console - Sovereign AI Solutions',
|
|
theme: MaterialTheme(textTheme).light(),
|
|
darkTheme: MaterialTheme(textTheme).dark(),
|
|
themeMode: ThemeMode.dark,
|
|
home: const ConsoleLandingPage(),
|
|
);
|
|
}
|
|
}
|