mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-23 03:49:22 +00:00
temp fix
This commit is contained in:
parent
523fd96929
commit
141c3f34c9
3 changed files with 33 additions and 24 deletions
|
@ -105,9 +105,12 @@ class AboutView extends ConsumerWidget {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context, WidgetRef ref) {
|
||||
String firoCommit = "lololololo"; //FIRO_VERSIONS.getPluginVersion();
|
||||
String epicCashCommit ="lololololo"; // EPIC_VERSIONS.getPluginVersion();
|
||||
String moneroCommit ="lololololo"; // MONERO_VERSIONS.getPluginVersion();
|
||||
String firoCommit =
|
||||
"Unable to fetch version"; //FIRO_VERSIONS.getPluginVersion();
|
||||
String epicCashCommit =
|
||||
"Unable to fetch version"; // EPIC_VERSIONS.getPluginVersion();
|
||||
String moneroCommit =
|
||||
"Unable to fetch version"; // MONERO_VERSIONS.getPluginVersion();
|
||||
List<Future> futureFiroList = [
|
||||
doesCommitExist("cypherstack", "flutter_liblelantus", firoCommit),
|
||||
isHeadCommit("cypherstack", "flutter_liblelantus", "main", firoCommit),
|
||||
|
@ -161,14 +164,14 @@ class AboutView extends ConsumerWidget {
|
|||
String appName = "";
|
||||
String build = "";
|
||||
|
||||
if (snapshot.connectionState ==
|
||||
ConnectionState.done &&
|
||||
snapshot.hasData) {
|
||||
version = snapshot.data!.version;
|
||||
build = snapshot.data!.buildNumber;
|
||||
signature = snapshot.data!.buildSignature;
|
||||
appName = snapshot.data!.appName;
|
||||
}
|
||||
// if (snapshot.connectionState ==
|
||||
// ConnectionState.done &&
|
||||
// snapshot.hasData) {
|
||||
// version = snapshot.data!.version;
|
||||
// build = snapshot.data!.buildNumber;
|
||||
// signature = snapshot.data!.buildSignature;
|
||||
// appName = snapshot.data!.appName;
|
||||
// }
|
||||
|
||||
return Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
|
|
|
@ -291,9 +291,12 @@ class _DebugViewState extends ConsumerState<DebugView> {
|
|||
final signature =
|
||||
packageInfo.buildSignature;
|
||||
final appName = packageInfo.appName;
|
||||
String firoCommit ="lololololo"; //FIRO_VERSIONS.getPluginVersion();
|
||||
String epicCashCommit ="lololololo"; //EPIC_VERSIONS.getPluginVersion();
|
||||
String moneroCommit ="lololololo"; // MONERO_VERSIONS.getPluginVersion();
|
||||
String firoCommit =
|
||||
"Unable to fetch version"; //FIRO_VERSIONS.getPluginVersion();
|
||||
String epicCashCommit =
|
||||
"Unable to fetch version"; //EPIC_VERSIONS.getPluginVersion();
|
||||
String moneroCommit =
|
||||
"Unable to fetch version"; // MONERO_VERSIONS.getPluginVersion();
|
||||
DeviceInfoPlugin deviceInfoPlugin =
|
||||
DeviceInfoPlugin();
|
||||
final deviceInfo =
|
||||
|
|
|
@ -98,9 +98,12 @@ class DesktopAboutView extends ConsumerWidget {
|
|||
|
||||
@override
|
||||
Widget build(BuildContext context, WidgetRef ref) {
|
||||
String firoCommit ="lololololo"; // FIRO_VERSIONS.getPluginVersion();
|
||||
String epicCashCommit ="lololololo"; // EPIC_VERSIONS.getPluginVersion();
|
||||
String moneroCommit = "lololololo"; //MONERO_VERSIONS.getPluginVersion();
|
||||
String firoCommit =
|
||||
"Unable to fetch version"; // FIRO_VERSIONS.getPluginVersion();
|
||||
String epicCashCommit =
|
||||
"Unable to fetch version"; // EPIC_VERSIONS.getPluginVersion();
|
||||
String moneroCommit =
|
||||
"Unable to fetch version"; //MONERO_VERSIONS.getPluginVersion();
|
||||
List<Future> futureFiroList = [
|
||||
doesCommitExist("cypherstack", "flutter_liblelantus", firoCommit),
|
||||
isHeadCommit("cypherstack", "flutter_liblelantus", "main", firoCommit),
|
||||
|
@ -237,13 +240,13 @@ class DesktopAboutView extends ConsumerWidget {
|
|||
String signature = "";
|
||||
String build = "";
|
||||
|
||||
if (snapshot.connectionState ==
|
||||
ConnectionState.done &&
|
||||
snapshot.hasData) {
|
||||
version = snapshot.data!.version;
|
||||
build = snapshot.data!.buildNumber;
|
||||
signature = snapshot.data!.buildSignature;
|
||||
}
|
||||
// if (snapshot.connectionState ==
|
||||
// ConnectionState.done &&
|
||||
// snapshot.hasData) {
|
||||
// version = snapshot.data!.version;
|
||||
// build = snapshot.data!.buildNumber;
|
||||
// signature = snapshot.data!.buildSignature;
|
||||
// }
|
||||
|
||||
return Column(
|
||||
mainAxisAlignment:
|
||||
|
|
Loading…
Reference in a new issue