loris/lib/global.dart

29 lines
711 B
Dart
Raw Normal View History

2022-07-03 13:47:24 +00:00
import 'package:flutter/painting.dart';
2022-08-12 17:00:09 +00:00
import 'package:loris/business_logic/settings.dart';
2022-07-03 13:47:24 +00:00
2022-07-04 17:37:53 +00:00
const String name = "loris";
2022-07-04 20:39:25 +00:00
const String version = "v0.1 'is this thing on'";
2022-06-28 20:05:24 +00:00
const String useragent = "$name/$version";
const String website = "https://git.kittycat.homes/zoe/loris";
2022-08-06 10:13:00 +00:00
const String legalese = "todo";
2022-06-28 20:05:24 +00:00
const Map<String, String> defaultHeaders = {
"User-Agent": useragent,
"accept": "application/json",
"Content-Type": "application/json"
};
2022-08-06 10:13:00 +00:00
2022-08-12 22:28:00 +00:00
const List<String> bad = [
"gab.com",
"spinster.xyz",
"truthsocial.com",
"poa.st",
"gleasonator.com",
"shitposter.club",
"freespeechextremist.com"
];
2022-07-03 13:47:24 +00:00
const List<Locale> availableLocales = [Locale("en"), Locale("de")];
2022-08-12 17:00:09 +00:00
Settings? settings;