loris/lib/global.dart

14 lines
511 B
Dart
Raw Normal View History

2022-07-03 13:47:24 +00:00
import 'package:flutter/painting.dart';
2022-07-04 17:37:53 +00:00
const String name = "loris";
2022-06-28 20:05:24 +00:00
const String version = "v0.1 'not even alpha'";
const String useragent = "$name/$version";
const String website = "https://git.kittycat.homes/zoe/slothmu";
const Map<String, String> defaultHeaders = {
"User-Agent": useragent,
"accept": "application/json",
"Content-Type": "application/json"
};
2022-07-01 15:14:44 +00:00
const List<String> bad = ["gab.com", "spinster.xyz", "truthsocial.com"];
2022-07-03 13:47:24 +00:00
const List<Locale> availableLocales = [Locale("en"), Locale("de")];