Android development APK / apk (push) Has been cancelled
Checks / go (push) Failing after 6s
Container images / publish (., deploy/pocketbase/Dockerfile, evoliohealth-pocketbase) (push) Has been cancelled
Container images / publish (., server/Dockerfile, evoliohealth-server) (push) Has been cancelled
Checks / compose (push) Has been cancelled
Checks / flutter (push) Has been cancelled
23 lines
678 B
Dart
23 lines
678 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
|
|
|
void main() {
|
|
runApp(const EvolioHealthWeb());
|
|
}
|
|
|
|
class EvolioHealthWeb extends StatelessWidget {
|
|
const EvolioHealthWeb({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
localizationsDelegates: GlobalMaterialLocalizations.delegates,
|
|
supportedLocales: const [Locale('en'), Locale('fr')],
|
|
title: 'EvolioHealth',
|
|
theme: ThemeData(colorSchemeSeed: const Color(0xFF006C51)),
|
|
home: const Scaffold(body: Center(child: Text('EvolioHealth Server'))),
|
|
);
|
|
}
|
|
}
|