git-touch-android-ios-app/lib/utils/utils.dart

89 lines
1.9 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/gestures.dart';
2019-08-31 15:37:29 +02:00
import 'package:primer/primer.dart';
2019-02-05 13:57:05 +01:00
import '../providers/settings.dart';
2019-02-07 07:35:19 +01:00
import '../screens/repo.dart';
export 'package:flutter_vector_icons/flutter_vector_icons.dart';
2019-03-10 09:09:26 +01:00
class StorageKeys {
static const account = 'account';
static const github = 'github';
static const theme = 'theme';
static const newsFilter = 'news.filter';
}
2019-02-04 11:32:39 +01:00
Color convertColor(String cssHex) {
2019-09-02 12:14:17 +02:00
if (cssHex == null) {
return Color(0xffcccccc); // Default color
}
2019-02-04 11:32:39 +01:00
if (cssHex.startsWith('#')) {
cssHex = cssHex.substring(1);
}
2019-03-12 12:00:31 +01:00
if (cssHex.length == 3) {
cssHex = cssHex.split('').map((char) => char + char).join('');
}
2019-02-04 11:32:39 +01:00
return Color(int.parse('ff' + cssHex, radix: 16));
}
2019-02-10 05:16:52 +01:00
void nextTick(Function callback, [int milliseconds = 0]) {
2019-02-08 16:20:28 +01:00
// FIXME:
2019-02-10 05:16:52 +01:00
Future.delayed(Duration(milliseconds: 0)).then((_) {
callback();
});
}
TextSpan createLinkSpan(BuildContext context, String text, Function handle) {
return TextSpan(
text: text,
2019-08-31 15:37:29 +02:00
style: TextStyle(fontWeight: FontWeight.w600),
2019-02-11 17:31:06 +01:00
recognizer: TapGestureRecognizer()
..onTap = () {
Navigator.of(context).push(
CupertinoPageRoute(
builder: (context) {
return handle();
},
),
);
},
);
}
TextSpan createRepoLinkSpan(BuildContext context, String owner, String name) {
return createLinkSpan(context, '$owner/$name', () => RepoScreen(owner, name));
}
class Palette {
2019-02-06 12:14:11 +01:00
static const green = Color(0xff2cbe4e);
}
// final pageSize = 5;
2019-02-09 07:20:21 +01:00
final pageSize = 30;
2019-01-29 06:34:52 +01:00
var createWarning =
(String text) => Text(text, style: TextStyle(color: Colors.redAccent));
var warningSpan =
TextSpan(text: 'xxx', style: TextStyle(color: Colors.redAccent));
2019-02-09 06:36:15 +01:00
var repoChunk = '''
owner {
login
}
name
description
isPrivate
isFork
stargazers {
totalCount
}
forks {
totalCount
}
primaryLanguage {
color
name
}
''';