mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
32 lines
979 B
Dart
32 lines
979 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:stackwallet/utilities/extensions/impl/string.dart';
|
|
|
|
extension GradientExt on Gradient {
|
|
static Gradient fromJson(Map<String, dynamic> json) {
|
|
switch (json["background"]["type"]) {
|
|
case "Linear":
|
|
final colorStrings =
|
|
List<String>.from(json["background"]["colors"] as List);
|
|
return LinearGradient(
|
|
begin: Alignment(
|
|
json["background"]["begin"]["x"] as double,
|
|
json["background"]["begin"]["y"] as double,
|
|
),
|
|
end: Alignment(
|
|
json["background"]["end"]["x"] as double,
|
|
json["background"]["end"]["y"] as double,
|
|
),
|
|
colors: colorStrings
|
|
.map(
|
|
(e) => Color(
|
|
e.toBigIntFromHex.toInt(),
|
|
),
|
|
)
|
|
.toList(),
|
|
);
|
|
|
|
default:
|
|
throw ArgumentError("Invalid json gradient: $json");
|
|
}
|
|
}
|
|
}
|