Commit eb70925f authored by Manuel's avatar Manuel

added Dockerfile

parent 05c7962e
2021/03/15-14:11:37.409 2e54 Reusing MANIFEST C:\Users\Luca\AppData\Local\Temp\flutter_tools.6980f546\flutter_tools_chrome_device.99ecf2dc\Default\AutofillStrikeDatabase/MANIFEST-000001
2021/03/15-14:11:37.379 1fec Reusing MANIFEST C:\Users\Luca\AppData\Local\Temp\flutter_tools.6980f546\flutter_tools_chrome_device.99ecf2dc\Default\BudgetDatabase/MANIFEST-000001
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
define(['dart_sdk', 'packages/flutter/src/painting/box_border.dart', 'packages/flutter/src/painting/border_radius.dart', 'packages/flutter/src/painting/box_shadow.dart', 'packages/flutter/src/painting/gradient.dart', 'packages/flutter/src/foundation/collections.dart', 'packages/flutter/src/foundation/debug.dart', 'packages/flutter/src/painting/colors.dart', 'packages/flutter/src/painting/decoration_image.dart', 'packages/flutter/src/painting/decoration.dart', 'packages/flutter/src/painting/_network_image_web.dart'], (function load__packages__flutter__src__painting__box_decoration_dart(dart_sdk, packages__flutter__src__painting__box_border$46dart, packages__flutter__src__painting__border_radius$46dart, packages__flutter__src__painting__box_shadow$46dart, packages__flutter__src__painting__gradient$46dart, packages__flutter__src__foundation__collections$46dart, packages__flutter__src__foundation__debug$46dart, packages__flutter__src__painting__colors$46dart, packages__flutter__src__painting__decoration_image$46dart, packages__flutter__src__painting__decoration$46dart, packages__flutter__src__painting___network_image_web$46dart) {
'use strict';
const core = dart_sdk.core;
const ui = dart_sdk.ui;
const _internal = dart_sdk._internal;
const math = dart_sdk.math;
const dart = dart_sdk.dart;
const dartx = dart_sdk.dartx;
const box_border = packages__flutter__src__painting__box_border$46dart.src__painting__box_border;
const border_radius = packages__flutter__src__painting__border_radius$46dart.src__painting__border_radius;
const box_shadow = packages__flutter__src__painting__box_shadow$46dart.src__painting__box_shadow;
const gradient = packages__flutter__src__painting__gradient$46dart.src__painting__gradient;
const collections = packages__flutter__src__foundation__collections$46dart.src__foundation__collections;
const diagnostics = packages__flutter__src__foundation__debug$46dart.src__foundation__diagnostics;
const colors = packages__flutter__src__painting__colors$46dart.src__painting__colors;
const decoration_image = packages__flutter__src__painting__decoration_image$46dart.src__painting__decoration_image;
const decoration = packages__flutter__src__painting__decoration$46dart.src__painting__decoration;
const image_provider = packages__flutter__src__painting___network_image_web$46dart.src__painting__image_provider;
var box_decoration = Object.create(dart.library);
var $runtimeType = dartx.runtimeType;
dart._checkModuleNullSafetyMode(false);
var T = {
BoxDecorationN: () => (T.BoxDecorationN = dart.constFn(dart.nullable(box_decoration.BoxDecoration)))(),
DiagnosticsPropertyOfDecorationImage: () => (T.DiagnosticsPropertyOfDecorationImage = dart.constFn(diagnostics.DiagnosticsProperty$(decoration_image.DecorationImage)))(),
DiagnosticsPropertyOfBoxBorder: () => (T.DiagnosticsPropertyOfBoxBorder = dart.constFn(diagnostics.DiagnosticsProperty$(box_border.BoxBorder)))(),
DiagnosticsPropertyOfBorderRadiusGeometry: () => (T.DiagnosticsPropertyOfBorderRadiusGeometry = dart.constFn(diagnostics.DiagnosticsProperty$(border_radius.BorderRadiusGeometry)))(),
IterablePropertyOfBoxShadow: () => (T.IterablePropertyOfBoxShadow = dart.constFn(diagnostics.IterableProperty$(box_shadow.BoxShadow)))(),
DiagnosticsPropertyOfGradient: () => (T.DiagnosticsPropertyOfGradient = dart.constFn(diagnostics.DiagnosticsProperty$(gradient.Gradient)))(),
EnumPropertyOfBoxShape: () => (T.EnumPropertyOfBoxShape = dart.constFn(diagnostics.EnumProperty$(box_border.BoxShape)))(),
BorderRadiusN: () => (T.BorderRadiusN = dart.constFn(dart.nullable(border_radius.BorderRadius)))()
};
var T$Eval = Object.assign({
_: () => T$Eval
}, T);
var S = {
_: () => S
};
var S$Eval = Object.assign({
_: () => S$Eval
}, S);
const CT = Object.create({
_: () => (C, CT)
});
dart.defineLazy(CT, {
get C0() {
return C[0] = dart.const({
__proto__: box_border.BoxShape.prototype,
[_name]: "BoxShape.rectangle",
index: 0
});
},
get C1() {
return C[1] = dart.const({
__proto__: box_border.BoxShape.prototype,
[_name]: "BoxShape.circle",
index: 1
});
}
}, false);
var C = Array(2).fill(void 0);
var I = [
"file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/painting/box_decoration.dart",
"package:flutter/src/painting/box_decoration.dart"
];
var color$ = dart.privateName(box_decoration, "BoxDecoration.color");
var image$ = dart.privateName(box_decoration, "BoxDecoration.image");
var border$ = dart.privateName(box_decoration, "BoxDecoration.border");
var borderRadius$ = dart.privateName(box_decoration, "BoxDecoration.borderRadius");
var boxShadow$ = dart.privateName(box_decoration, "BoxDecoration.boxShadow");
var gradient$ = dart.privateName(box_decoration, "BoxDecoration.gradient");
var backgroundBlendMode$ = dart.privateName(box_decoration, "BoxDecoration.backgroundBlendMode");
var shape$ = dart.privateName(box_decoration, "BoxDecoration.shape");
var _name = dart.privateName(box_border, "_name");
box_decoration.BoxDecoration = class BoxDecoration extends decoration.Decoration {
get color() {
return this[color$];
}
set color(value) {
super.color = value;
}
get image() {
return this[image$];
}
set image(value) {
super.image = value;
}
get border() {
return this[border$];
}
set border(value) {
super.border = value;
}
get borderRadius() {
return this[borderRadius$];
}
set borderRadius(value) {
super.borderRadius = value;
}
get boxShadow() {
return this[boxShadow$];
}
set boxShadow(value) {
super.boxShadow = value;
}
get gradient() {
return this[gradient$];
}
set gradient(value) {
super.gradient = value;
}
get backgroundBlendMode() {
return this[backgroundBlendMode$];
}
set backgroundBlendMode(value) {
super.backgroundBlendMode = value;
}
get shape() {
return this[shape$];
}
set shape(value) {
super.shape = value;
}
copyWith(opts) {
let t0, t0$, t0$0, t0$1, t0$2, t0$3, t0$4, t0$5;
let color = opts && 'color' in opts ? opts.color : null;
let image = opts && 'image' in opts ? opts.image : null;
let border = opts && 'border' in opts ? opts.border : null;
let borderRadius = opts && 'borderRadius' in opts ? opts.borderRadius : null;
let boxShadow = opts && 'boxShadow' in opts ? opts.boxShadow : null;
let gradient = opts && 'gradient' in opts ? opts.gradient : null;
let backgroundBlendMode = opts && 'backgroundBlendMode' in opts ? opts.backgroundBlendMode : null;
let shape = opts && 'shape' in opts ? opts.shape : null;
return new box_decoration.BoxDecoration.new({color: (t0 = color, t0 == null ? this.color : t0), image: (t0$ = image, t0$ == null ? this.image : t0$), border: (t0$0 = border, t0$0 == null ? this.border : t0$0), borderRadius: (t0$1 = borderRadius, t0$1 == null ? this.borderRadius : t0$1), boxShadow: (t0$2 = boxShadow, t0$2 == null ? this.boxShadow : t0$2), gradient: (t0$3 = gradient, t0$3 == null ? this.gradient : t0$3), backgroundBlendMode: (t0$4 = backgroundBlendMode, t0$4 == null ? this.backgroundBlendMode : t0$4), shape: (t0$5 = shape, t0$5 == null ? this.shape : t0$5)});
}
debugAssertIsValid() {
if (!(this.shape != box_border.BoxShape.circle || this.borderRadius == null)) dart.assertFailed(null, I[0], 131, 12, "shape != BoxShape.circle ||\r\n borderRadius == null");
return super.debugAssertIsValid();
}
get padding() {
let t0;
t0 = this.border;
return t0 == null ? null : t0.dimensions;
}
getClipPath(rect, textDirection) {
let t0, t0$, t0$0;
if (rect == null) dart.nullFailed(I[0], 218, 25, "rect");
if (textDirection == null) dart.nullFailed(I[0], 218, 45, "textDirection");
switch (this.shape) {
case C[1] || CT.C1:
{
let center = rect.center;
let radius = dart.notNull(rect.shortestSide) / 2.0;
let square = new ui.Rect.fromCircle({center: center, radius: radius});
t0 = ui.Path.new();
return (() => {
t0.addOval(square);
return t0;
})();
}
case C[0] || CT.C0:
{
if (this.borderRadius != null) {
t0$ = ui.Path.new();
return (() => {
t0$.addRRect(dart.nullCheck(this.borderRadius).resolve(textDirection).toRRect(rect));
return t0$;
})();
}
t0$0 = ui.Path.new();
return (() => {
t0$0.addRect(rect);
return t0$0;
})();
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
}
scale(factor) {
let t0;
if (factor == null) dart.nullFailed(I[0], 233, 30, "factor");
return new box_decoration.BoxDecoration.new({color: ui.Color.lerp(null, this.color, factor), image: this.image, border: box_border.BoxBorder.lerp(null, this.border, factor), borderRadius: border_radius.BorderRadiusGeometry.lerp(null, this.borderRadius, factor), boxShadow: box_shadow.BoxShadow.lerpList(null, this.boxShadow, factor), gradient: (t0 = this.gradient, t0 == null ? null : t0.scale(factor)), shape: this.shape});
}
get isComplex() {
return this.boxShadow != null;
}
lerpFrom(a, t) {
if (t == null) dart.nullFailed(I[0], 249, 49, "t");
if (a == null) return this.scale(t);
if (box_decoration.BoxDecoration.is(a)) return box_decoration.BoxDecoration.lerp(a, this, t);
return T.BoxDecorationN().as(super.lerpFrom(a, t));
}
lerpTo(b, t) {
if (t == null) dart.nullFailed(I[0], 258, 47, "t");
if (b == null) return this.scale(1.0 - dart.notNull(t));
if (box_decoration.BoxDecoration.is(b)) return box_decoration.BoxDecoration.lerp(this, b, t);
return T.BoxDecorationN().as(super.lerpTo(b, t));
}
static lerp(a, b, t) {
if (t == null) dart.nullFailed(I[0], 289, 73, "t");
if (!(t != null)) dart.assertFailed(null, I[0], 290, 12, "t != null");
if (a == null && b == null) return null;
if (a == null) return dart.nullCheck(b).scale(t);
if (b == null) return a.scale(1.0 - dart.notNull(t));
if (t === 0.0) return a;
if (t === 1.0) return b;
return new box_decoration.BoxDecoration.new({color: ui.Color.lerp(a.color, b.color, t), image: dart.notNull(t) < 0.5 ? a.image : b.image, border: box_border.BoxBorder.lerp(a.border, b.border, t), borderRadius: border_radius.BorderRadiusGeometry.lerp(a.borderRadius, b.borderRadius, t), boxShadow: box_shadow.BoxShadow.lerpList(a.boxShadow, b.boxShadow, t), gradient: gradient.Gradient.lerp(a.gradient, b.gradient, t), shape: dart.notNull(t) < 0.5 ? a.shape : b.shape});
}
_equals(other) {
if (other == null) return false;
if (this === other) return true;
if (!dart.equals(dart.runtimeType(other), this[$runtimeType])) return false;
return box_decoration.BoxDecoration.is(other) && dart.equals(other.color, this.color) && dart.equals(other.image, this.image) && dart.equals(other.border, this.border) && dart.equals(other.borderRadius, this.borderRadius) && dart.test(collections.listEquals(box_shadow.BoxShadow, other.boxShadow, this.boxShadow)) && dart.equals(other.gradient, this.gradient) && other.shape == this.shape;
}
get hashCode() {
return ui.hashValues(this.color, this.image, this.border, this.borderRadius, ui.hashList(this.boxShadow), this.gradient, this.shape);
}
debugFillProperties(properties) {
let t0;
if (properties == null) dart.nullFailed(I[0], 342, 56, "properties");
super.debugFillProperties(properties);
t0 = properties;
(() => {
t0.defaultDiagnosticsTreeStyle = diagnostics.DiagnosticsTreeStyle.whitespace;
t0.emptyBodyDescription = "<no decorations specified>";
return t0;
})();
properties.add(new colors.ColorProperty.new("color", this.color, {defaultValue: null}));
properties.add(new (T.DiagnosticsPropertyOfDecorationImage()).new("image", this.image, {defaultValue: null}));
properties.add(new (T.DiagnosticsPropertyOfBoxBorder()).new("border", this.border, {defaultValue: null}));
properties.add(new (T.DiagnosticsPropertyOfBorderRadiusGeometry()).new("borderRadius", this.borderRadius, {defaultValue: null}));
properties.add(new (T.IterablePropertyOfBoxShadow()).new("boxShadow", this.boxShadow, {defaultValue: null, style: diagnostics.DiagnosticsTreeStyle.whitespace}));
properties.add(new (T.DiagnosticsPropertyOfGradient()).new("gradient", this.gradient, {defaultValue: null}));
properties.add(new (T.EnumPropertyOfBoxShape()).new("shape", this.shape, {defaultValue: box_border.BoxShape.rectangle}));
}
hitTest(size, position, opts) {
if (size == null) dart.nullFailed(I[0], 358, 21, "size");
if (position == null) dart.nullFailed(I[0], 358, 34, "position");
let textDirection = opts && 'textDirection' in opts ? opts.textDirection : null;
if (!(this.shape != null)) dart.assertFailed(null, I[0], 359, 12, "shape != null");
if (!dart.test(ui.Offset.zero['&'](size).contains(position))) dart.assertFailed(null, I[0], 360, 12, "(Offset.zero & size).contains(position)");
switch (this.shape) {
case C[0] || CT.C0:
{
if (this.borderRadius != null) {
let bounds = dart.nullCheck(this.borderRadius).resolve(textDirection).toRRect(ui.Offset.zero['&'](size));
return bounds.contains(position);
}
return true;
}
case C[1] || CT.C1:
{
let center = size.center(ui.Offset.zero);
let distance = position['-'](center).distance;
return dart.notNull(distance) <= math.min(core.double, size.width, size.height) / 2.0;
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
}
createBoxPainter(onChanged = null) {
if (!(onChanged != null || this.image == null)) dart.assertFailed(null, I[0], 378, 12, "onChanged != null || image == null");
return new box_decoration._BoxDecorationPainter.new(this, onChanged);
}
};
(box_decoration.BoxDecoration.new = function(opts) {
let color = opts && 'color' in opts ? opts.color : null;
let image = opts && 'image' in opts ? opts.image : null;
let border = opts && 'border' in opts ? opts.border : null;
let borderRadius = opts && 'borderRadius' in opts ? opts.borderRadius : null;
let boxShadow = opts && 'boxShadow' in opts ? opts.boxShadow : null;
let gradient = opts && 'gradient' in opts ? opts.gradient : null;
let backgroundBlendMode = opts && 'backgroundBlendMode' in opts ? opts.backgroundBlendMode : null;
let shape = opts && 'shape' in opts ? opts.shape : C[0] || CT.C0;
if (shape == null) dart.nullFailed(I[0], 97, 10, "shape");
this[color$] = color;
this[image$] = image;
this[border$] = border;
this[borderRadius$] = borderRadius;
this[boxShadow$] = boxShadow;
this[gradient$] = gradient;
this[backgroundBlendMode$] = backgroundBlendMode;
this[shape$] = shape;
if (!(shape != null)) dart.assertFailed(null, I[0], 98, 15, "shape != null");
if (!(backgroundBlendMode == null || color != null || gradient != null)) dart.assertFailed("backgroundBlendMode applies to BoxDecoration's background color or " + "gradient, but no color or gradient was provided.", I[0], 100, 10, "backgroundBlendMode == null || color != null || gradient != null");
box_decoration.BoxDecoration.__proto__.new.call(this);
;
}).prototype = box_decoration.BoxDecoration.prototype;
dart.addTypeTests(box_decoration.BoxDecoration);
dart.addTypeCaches(box_decoration.BoxDecoration);
dart.setMethodSignature(box_decoration.BoxDecoration, () => ({
__proto__: dart.getMethods(box_decoration.BoxDecoration.__proto__),
copyWith: dart.fnType(box_decoration.BoxDecoration, [], {backgroundBlendMode: dart.nullable(ui.BlendMode), border: dart.nullable(box_border.BoxBorder), borderRadius: dart.nullable(border_radius.BorderRadiusGeometry), boxShadow: dart.nullable(core.List$(box_shadow.BoxShadow)), color: dart.nullable(ui.Color), gradient: dart.nullable(gradient.Gradient), image: dart.nullable(decoration_image.DecorationImage), shape: dart.nullable(box_border.BoxShape)}, {}),
scale: dart.fnType(box_decoration.BoxDecoration, [core.double]),
lerpFrom: dart.fnType(dart.nullable(box_decoration.BoxDecoration), [dart.nullable(decoration.Decoration), core.double]),
lerpTo: dart.fnType(dart.nullable(box_decoration.BoxDecoration), [dart.nullable(decoration.Decoration), core.double]),
createBoxPainter: dart.fnType(box_decoration._BoxDecorationPainter, [], [dart.nullable(dart.fnType(dart.void, []))])
}));
dart.setLibraryUri(box_decoration.BoxDecoration, I[1]);
dart.setFieldSignature(box_decoration.BoxDecoration, () => ({
__proto__: dart.getFields(box_decoration.BoxDecoration.__proto__),
color: dart.finalFieldType(dart.nullable(ui.Color)),
image: dart.finalFieldType(dart.nullable(decoration_image.DecorationImage)),
border: dart.finalFieldType(dart.nullable(box_border.BoxBorder)),
borderRadius: dart.finalFieldType(dart.nullable(border_radius.BorderRadiusGeometry)),
boxShadow: dart.finalFieldType(dart.nullable(core.List$(box_shadow.BoxShadow))),
gradient: dart.finalFieldType(dart.nullable(gradient.Gradient)),
backgroundBlendMode: dart.finalFieldType(dart.nullable(ui.BlendMode)),
shape: dart.finalFieldType(box_border.BoxShape)
}));
dart.defineExtensionMethods(box_decoration.BoxDecoration, ['_equals']);
dart.defineExtensionAccessors(box_decoration.BoxDecoration, ['hashCode']);
var _cachedBackgroundPaint = dart.privateName(box_decoration, "_cachedBackgroundPaint");
var _rectForCachedBackgroundPaint = dart.privateName(box_decoration, "_rectForCachedBackgroundPaint");
var _imagePainter = dart.privateName(box_decoration, "_imagePainter");
var _decoration$ = dart.privateName(box_decoration, "_decoration");
var _getBackgroundPaint = dart.privateName(box_decoration, "_getBackgroundPaint");
var _paintBox = dart.privateName(box_decoration, "_paintBox");
var _paintShadows = dart.privateName(box_decoration, "_paintShadows");
var _paintBackgroundColor = dart.privateName(box_decoration, "_paintBackgroundColor");
var _paintBackgroundImage = dart.privateName(box_decoration, "_paintBackgroundImage");
box_decoration._BoxDecorationPainter = class _BoxDecorationPainter extends decoration.BoxPainter {
[_getBackgroundPaint](rect, textDirection) {
if (rect == null) dart.nullFailed(I[0], 393, 34, "rect");
if (!(rect != null)) dart.assertFailed(null, I[0], 394, 12, "rect != null");
if (!(this[_decoration$].gradient != null || this[_rectForCachedBackgroundPaint] == null)) dart.assertFailed(null, I[0], 395, 12, "_decoration.gradient != null || _rectForCachedBackgroundPaint == null");
if (this[_cachedBackgroundPaint] == null || this[_decoration$].gradient != null && !dart.equals(this[_rectForCachedBackgroundPaint], rect)) {
let paint = ui.Paint.new();
if (this[_decoration$].backgroundBlendMode != null) paint.blendMode = dart.nullCheck(this[_decoration$].backgroundBlendMode);
if (this[_decoration$].color != null) paint.color = dart.nullCheck(this[_decoration$].color);
if (this[_decoration$].gradient != null) {
paint.shader = dart.nullCheck(this[_decoration$].gradient).createShader(rect, {textDirection: textDirection});
this[_rectForCachedBackgroundPaint] = rect;
}
this[_cachedBackgroundPaint] = paint;
}
return dart.nullCheck(this[_cachedBackgroundPaint]);
}
[_paintBox](canvas, rect, paint, textDirection) {
if (canvas == null) dart.nullFailed(I[0], 414, 25, "canvas");
if (rect == null) dart.nullFailed(I[0], 414, 38, "rect");
if (paint == null) dart.nullFailed(I[0], 414, 50, "paint");
switch (this[_decoration$].shape) {
case C[1] || CT.C1:
{
if (!(this[_decoration$].borderRadius == null)) dart.assertFailed(null, I[0], 417, 16, "_decoration.borderRadius == null");
let center = rect.center;
let radius = dart.notNull(rect.shortestSide) / 2.0;
canvas.drawCircle(center, radius, paint);
break;
}
case C[0] || CT.C0:
{
if (this[_decoration$].borderRadius == null) {
canvas.drawRect(rect, paint);
} else {
canvas.drawRRect(dart.nullCheck(this[_decoration$].borderRadius).resolve(textDirection).toRRect(rect), paint);
}
break;
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
}
[_paintShadows](canvas, rect, textDirection) {
if (canvas == null) dart.nullFailed(I[0], 432, 29, "canvas");
if (rect == null) dart.nullFailed(I[0], 432, 42, "rect");
if (this[_decoration$].boxShadow == null) return;
for (let boxShadow of dart.nullCheck(this[_decoration$].boxShadow)) {
let paint = boxShadow.toPaint();
let bounds = rect.shift(boxShadow.offset).inflate(boxShadow.spreadRadius);
this[_paintBox](canvas, bounds, paint, textDirection);
}
}
[_paintBackgroundColor](canvas, rect, textDirection) {
if (canvas == null) dart.nullFailed(I[0], 442, 37, "canvas");
if (rect == null) dart.nullFailed(I[0], 442, 50, "rect");
if (this[_decoration$].color != null || this[_decoration$].gradient != null) this[_paintBox](canvas, rect, this[_getBackgroundPaint](rect, textDirection), textDirection);
}
[_paintBackgroundImage](canvas, rect, configuration) {
let t0, t0$;
if (canvas == null) dart.nullFailed(I[0], 448, 37, "canvas");
if (rect == null) dart.nullFailed(I[0], 448, 50, "rect");
if (configuration == null) dart.nullFailed(I[0], 448, 75, "configuration");
if (this[_decoration$].image == null) return;
this[_imagePainter] == null ? this[_imagePainter] = dart.nullCheck(this[_decoration$].image).createPainter(dart.nullCheck(this.onChanged)) : null;
let clipPath = null;
switch (this[_decoration$].shape) {
case C[1] || CT.C1:
{
if (!(this[_decoration$].borderRadius == null)) dart.assertFailed(null, I[0], 455, 16, "_decoration.borderRadius == null");
let center = rect.center;
let radius = dart.notNull(rect.shortestSide) / 2.0;
let square = new ui.Rect.fromCircle({center: center, radius: radius});
clipPath = (t0 = ui.Path.new(), (() => {
t0.addOval(square);
return t0;
})());
break;
}
case C[0] || CT.C0:
{
if (this[_decoration$].borderRadius != null) clipPath = (t0$ = ui.Path.new(), (() => {
t0$.addRRect(dart.nullCheck(this[_decoration$].borderRadius).resolve(configuration.textDirection).toRRect(rect));
return t0$;
})());
break;
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
dart.nullCheck(this[_imagePainter]).paint(canvas, rect, clipPath, configuration);
}
dispose() {
let t0;
t0 = this[_imagePainter];
t0 == null ? null : t0.dispose();
super.dispose();
}
paint(canvas, offset, configuration) {
let t0;
if (canvas == null) dart.nullFailed(I[0], 477, 21, "canvas");
if (offset == null) dart.nullFailed(I[0], 477, 36, "offset");
if (configuration == null) dart.nullFailed(I[0], 477, 63, "configuration");
if (!(configuration != null)) dart.assertFailed(null, I[0], 478, 12, "configuration != null");
if (!(configuration.size != null)) dart.assertFailed(null, I[0], 479, 12, "configuration.size != null");
let rect = offset['&'](dart.nullCheck(configuration.size));
let textDirection = configuration.textDirection;
this[_paintShadows](canvas, rect, textDirection);
this[_paintBackgroundColor](canvas, rect, textDirection);
this[_paintBackgroundImage](canvas, rect, configuration);
t0 = this[_decoration$].border;
t0 == null ? null : t0.paint(canvas, rect, {shape: this[_decoration$].shape, borderRadius: T.BorderRadiusN().as(this[_decoration$].borderRadius), textDirection: configuration.textDirection});
}
toString() {
return "BoxPainter for " + dart.str(this[_decoration$]);
}
};
(box_decoration._BoxDecorationPainter.new = function(_decoration, onChanged) {
if (_decoration == null) dart.nullFailed(I[0], 385, 30, "_decoration");
this[_cachedBackgroundPaint] = null;
this[_rectForCachedBackgroundPaint] = null;
this[_imagePainter] = null;
this[_decoration$] = _decoration;
if (!(_decoration != null)) dart.assertFailed(null, I[0], 386, 14, "_decoration != null");
box_decoration._BoxDecorationPainter.__proto__.new.call(this, onChanged);
;
}).prototype = box_decoration._BoxDecorationPainter.prototype;
dart.addTypeTests(box_decoration._BoxDecorationPainter);
dart.addTypeCaches(box_decoration._BoxDecorationPainter);
dart.setMethodSignature(box_decoration._BoxDecorationPainter, () => ({
__proto__: dart.getMethods(box_decoration._BoxDecorationPainter.__proto__),
[_getBackgroundPaint]: dart.fnType(ui.Paint, [ui.Rect, dart.nullable(ui.TextDirection)]),
[_paintBox]: dart.fnType(dart.void, [ui.Canvas, ui.Rect, ui.Paint, dart.nullable(ui.TextDirection)]),
[_paintShadows]: dart.fnType(dart.void, [ui.Canvas, ui.Rect, dart.nullable(ui.TextDirection)]),
[_paintBackgroundColor]: dart.fnType(dart.void, [ui.Canvas, ui.Rect, dart.nullable(ui.TextDirection)]),
[_paintBackgroundImage]: dart.fnType(dart.void, [ui.Canvas, ui.Rect, image_provider.ImageConfiguration]),
paint: dart.fnType(dart.void, [ui.Canvas, ui.Offset, image_provider.ImageConfiguration])
}));
dart.setLibraryUri(box_decoration._BoxDecorationPainter, I[1]);
dart.setFieldSignature(box_decoration._BoxDecorationPainter, () => ({
__proto__: dart.getFields(box_decoration._BoxDecorationPainter.__proto__),
[_decoration$]: dart.finalFieldType(box_decoration.BoxDecoration),
[_cachedBackgroundPaint]: dart.fieldType(dart.nullable(ui.Paint)),
[_rectForCachedBackgroundPaint]: dart.fieldType(dart.nullable(ui.Rect)),
[_imagePainter]: dart.fieldType(dart.nullable(decoration_image.DecorationImagePainter))
}));
dart.defineExtensionMethods(box_decoration._BoxDecorationPainter, ['toString']);
dart.trackLibraries("packages/flutter/src/painting/box_decoration.dart", {
"package:flutter/src/painting/box_decoration.dart": box_decoration
}, {
}, '{"version":3,"sourceRoot":"","sources":["box_decoration.dart"],"names":[],"mappings":"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","file":"../../../../../../../../../../../packages/flutter/src/painting/box_decoration.dart.lib.js"}');
// Exports:
return {
src__painting__box_decoration: box_decoration
};
}));
//# sourceMappingURL=box_decoration.dart.lib.js.map
define(['dart_sdk', 'packages/vector_math/vector_math_64.dart', 'packages/flutter/src/painting/alignment.dart', 'packages/flutter/src/foundation/collections.dart', 'packages/flutter/src/foundation/object.dart'], (function load__packages__flutter__src__painting__gradient_dart(dart_sdk, packages__vector_math__vector_math_64$46dart, packages__flutter__src__painting__alignment$46dart, packages__flutter__src__foundation__collections$46dart, packages__flutter__src__foundation__object$46dart) {
'use strict';
const core = dart_sdk.core;
const ui = dart_sdk.ui;
const math = dart_sdk.math;
const typed_data = dart_sdk.typed_data;
const collection = dart_sdk.collection;
const dart = dart_sdk.dart;
const dartx = dart_sdk.dartx;
const vector_math_64 = packages__vector_math__vector_math_64$46dart.vector_math_64;
const alignment = packages__flutter__src__painting__alignment$46dart.src__painting__alignment;
const collections = packages__flutter__src__foundation__collections$46dart.src__foundation__collections;
const object = packages__flutter__src__foundation__object$46dart.src__foundation__object;
var gradient = Object.create(dart.library);
var $length = dartx.length;
var $map = dartx.map;
var $toList = dartx.toList;
var $runtimeType = dartx.runtimeType;
var $isNotEmpty = dartx.isNotEmpty;
var $first = dartx.first;
var $last = dartx.last;
var $lastIndexWhere = dartx.lastIndexWhere;
var $_get = dartx._get;
dart._checkModuleNullSafetyMode(false);
var T = {
ListOfdouble: () => (T.ListOfdouble = dart.constFn(core.List$(core.double)))(),
intTodouble: () => (T.intTodouble = dart.constFn(dart.fnType(core.double, [core.int])))(),
ColorToColor: () => (T.ColorToColor = dart.constFn(dart.fnType(ui.Color, [ui.Color])))(),
LinearGradientN: () => (T.LinearGradientN = dart.constFn(dart.nullable(gradient.LinearGradient)))(),
RadialGradientN: () => (T.RadialGradientN = dart.constFn(dart.nullable(gradient.RadialGradient)))(),
SweepGradientN: () => (T.SweepGradientN = dart.constFn(dart.nullable(gradient.SweepGradient)))(),
doubleTobool: () => (T.doubleTobool = dart.constFn(dart.fnType(core.bool, [core.double])))(),
SplayTreeSetOfdouble: () => (T.SplayTreeSetOfdouble = dart.constFn(collection.SplayTreeSet$(core.double)))(),
doubleToColor: () => (T.doubleToColor = dart.constFn(dart.fnType(ui.Color, [core.double])))()
};
var T$Eval = Object.assign({
_: () => T$Eval
}, T);
var S = {
_: () => S
};
var S$Eval = Object.assign({
_: () => S$Eval
}, S);
const CT = Object.create({
_: () => (C, CT)
});
dart.defineLazy(CT, {
get C0() {
return C[0] = dart.const({
__proto__: alignment.Alignment.prototype,
[Alignment_y]: 0,
[Alignment_x]: -1
});
},
get C1() {
return C[1] = dart.const({
__proto__: alignment.Alignment.prototype,
[Alignment_y]: 0,
[Alignment_x]: 1
});
},
get C2() {
return C[2] = dart.const({
__proto__: ui.TileMode.prototype,
[_name]: "TileMode.clamp",
index: 0
});
},
get C3() {
return C[3] = dart.const({
__proto__: alignment.Alignment.prototype,
[Alignment_y]: 0,
[Alignment_x]: 0
});
}
}, false);
var C = Array(4).fill(void 0);
var I = [
"file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/painting/gradient.dart",
"package:flutter/src/painting/gradient.dart"
];
gradient._ColorsAndStops = class _ColorsAndStops extends core.Object {};
(gradient._ColorsAndStops.new = function(colors, stops) {
if (colors == null) dart.nullFailed(I[0], 18, 24, "colors");
if (stops == null) dart.nullFailed(I[0], 18, 37, "stops");
this.colors = colors;
this.stops = stops;
;
}).prototype = gradient._ColorsAndStops.prototype;
dart.addTypeTests(gradient._ColorsAndStops);
dart.addTypeCaches(gradient._ColorsAndStops);
dart.setLibraryUri(gradient._ColorsAndStops, I[1]);
dart.setFieldSignature(gradient._ColorsAndStops, () => ({
__proto__: dart.getFields(gradient._ColorsAndStops.__proto__),
colors: dart.finalFieldType(core.List$(ui.Color)),
stops: dart.finalFieldType(core.List$(core.double))
}));
gradient.GradientTransform = class GradientTransform extends core.Object {};
(gradient.GradientTransform.new = function() {
;
}).prototype = gradient.GradientTransform.prototype;
dart.addTypeTests(gradient.GradientTransform);
dart.addTypeCaches(gradient.GradientTransform);
dart.setLibraryUri(gradient.GradientTransform, I[1]);
var radians$ = dart.privateName(gradient, "GradientRotation.radians");
gradient.GradientRotation = class GradientRotation extends gradient.GradientTransform {
get radians() {
return this[radians$];
}
set radians(value) {
super.radians = value;
}
transform(bounds, opts) {
let t0;
if (bounds == null) dart.nullFailed(I[0], 108, 26, "bounds");
let textDirection = opts && 'textDirection' in opts ? opts.textDirection : null;
if (!(bounds != null)) dart.assertFailed(null, I[0], 109, 12, "bounds != null");
let sinRadians = math.sin(this.radians);
let oneMinusCosRadians = 1 - math.cos(this.radians);
let center = bounds.center;
let originX = sinRadians * dart.notNull(center.dy) + oneMinusCosRadians * dart.notNull(center.dx);
let originY = -sinRadians * dart.notNull(center.dx) + oneMinusCosRadians * dart.notNull(center.dy);
t0 = vector_math_64.Matrix4.identity();
return (() => {
t0.translate(originX, originY);
t0.rotateZ(this.radians);
return t0;
})();
}
};
(gradient.GradientRotation.new = function(radians) {
if (radians == null) dart.nullFailed(I[0], 102, 31, "radians");
this[radians$] = radians;
gradient.GradientRotation.__proto__.new.call(this);
;
}).prototype = gradient.GradientRotation.prototype;
dart.addTypeTests(gradient.GradientRotation);
dart.addTypeCaches(gradient.GradientRotation);
dart.setMethodSignature(gradient.GradientRotation, () => ({
__proto__: dart.getMethods(gradient.GradientRotation.__proto__),
transform: dart.fnType(vector_math_64.Matrix4, [ui.Rect], {textDirection: dart.nullable(ui.TextDirection)}, {})
}));
dart.setLibraryUri(gradient.GradientRotation, I[1]);
dart.setFieldSignature(gradient.GradientRotation, () => ({
__proto__: dart.getFields(gradient.GradientRotation.__proto__),
radians: dart.finalFieldType(core.double)
}));
var colors$ = dart.privateName(gradient, "Gradient.colors");
var stops$ = dart.privateName(gradient, "Gradient.stops");
var transform$ = dart.privateName(gradient, "Gradient.transform");
var _impliedStops = dart.privateName(gradient, "_impliedStops");
var _resolveTransform = dart.privateName(gradient, "_resolveTransform");
gradient.Gradient = class Gradient extends core.Object {
get colors() {
return this[colors$];
}
set colors(value) {
super.colors = value;
}
get stops() {
return this[stops$];
}
set stops(value) {
super.stops = value;
}
get transform() {
return this[transform$];
}
set transform(value) {
super.transform = value;
}
[_impliedStops]() {
if (this.stops != null) return dart.nullCheck(this.stops);
if (!(dart.notNull(this.colors[$length]) >= 2)) dart.assertFailed("colors list must have at least two colors", I[0], 189, 12, "colors.length >= 2");
let separation = 1.0 / (dart.notNull(this.colors[$length]) - 1);
return T.ListOfdouble().generate(this.colors[$length], dart.fn(index => {
if (index == null) dart.nullFailed(I[0], 193, 12, "index");
return dart.notNull(index) * separation;
}, T.intTodouble()), {growable: false});
}
lerpFrom(a, t) {
if (t == null) dart.nullFailed(I[0], 244, 42, "t");
if (a == null) return this.scale(t);
return null;
}
lerpTo(b, t) {
if (t == null) dart.nullFailed(I[0], 275, 40, "t");
if (b == null) return this.scale(1.0 - dart.notNull(t));
return null;
}
static lerp(a, b, t) {
if (t == null) dart.nullFailed(I[0], 289, 58, "t");
if (!(t != null)) dart.assertFailed(null, I[0], 290, 12, "t != null");
let result = null;
if (b != null) result = b.lerpFrom(a, t);
if (result == null && a != null) result = a.lerpTo(b, t);
if (result != null) return result;
if (a == null && b == null) return null;
if (!(a != null && b != null)) dart.assertFailed(null, I[0], 300, 12, "a != null && b != null");
return dart.notNull(t) < 0.5 ? dart.nullCheck(a).scale(1.0 - dart.notNull(t) * 2.0) : dart.nullCheck(b).scale((dart.notNull(t) - 0.5) * 2.0);
}
[_resolveTransform](bounds, textDirection) {
let t1, t0;
if (bounds == null) dart.nullFailed(I[0], 304, 39, "bounds");
t0 = this.transform;
return t0 == null ? null : (t1 = t0.transform(bounds, {textDirection: textDirection}), t1 == null ? null : t1.storage);
}
};
(gradient.Gradient.new = function(opts) {
let colors = opts && 'colors' in opts ? opts.colors : null;
if (colors == null) dart.nullFailed(I[0], 149, 19, "colors");
let stops = opts && 'stops' in opts ? opts.stops : null;
let transform = opts && 'transform' in opts ? opts.transform : null;
this[colors$] = colors;
this[stops$] = stops;
this[transform$] = transform;
if (!(colors != null)) dart.assertFailed(null, I[0], 152, 15, "colors != null");
;
}).prototype = gradient.Gradient.prototype;
dart.addTypeTests(gradient.Gradient);
dart.addTypeCaches(gradient.Gradient);
dart.setMethodSignature(gradient.Gradient, () => ({
__proto__: dart.getMethods(gradient.Gradient.__proto__),
[_impliedStops]: dart.fnType(core.List$(core.double), []),
lerpFrom: dart.fnType(dart.nullable(gradient.Gradient), [dart.nullable(gradient.Gradient), core.double]),
lerpTo: dart.fnType(dart.nullable(gradient.Gradient), [dart.nullable(gradient.Gradient), core.double]),
[_resolveTransform]: dart.fnType(dart.nullable(typed_data.Float64List), [ui.Rect, dart.nullable(ui.TextDirection)])
}));
dart.setLibraryUri(gradient.Gradient, I[1]);
dart.setFieldSignature(gradient.Gradient, () => ({
__proto__: dart.getFields(gradient.Gradient.__proto__),
colors: dart.finalFieldType(core.List$(ui.Color)),
stops: dart.finalFieldType(dart.nullable(core.List$(core.double))),
transform: dart.finalFieldType(dart.nullable(gradient.GradientTransform))
}));
var begin$ = dart.privateName(gradient, "LinearGradient.begin");
var end$ = dart.privateName(gradient, "LinearGradient.end");
var tileMode$ = dart.privateName(gradient, "LinearGradient.tileMode");
var Alignment_y = dart.privateName(alignment, "Alignment.y");
var Alignment_x = dart.privateName(alignment, "Alignment.x");
var _name = dart.privateName(ui, "_name");
gradient.LinearGradient = class LinearGradient extends gradient.Gradient {
get begin() {
return this[begin$];
}
set begin(value) {
super.begin = value;
}
get end() {
return this[end$];
}
set end(value) {
super.end = value;
}
get tileMode() {
return this[tileMode$];
}
set tileMode(value) {
super.tileMode = value;
}
createShader(rect, opts) {
if (rect == null) dart.nullFailed(I[0], 419, 28, "rect");
let textDirection = opts && 'textDirection' in opts ? opts.textDirection : null;
return ui.Gradient.linear(this.begin.resolve(textDirection).withinRect(rect), this.end.resolve(textDirection).withinRect(rect), this.colors, this[_impliedStops](), this.tileMode, this[_resolveTransform](rect, textDirection));
}
scale(factor) {
if (factor == null) dart.nullFailed(I[0], 432, 31, "factor");
return new gradient.LinearGradient.new({begin: this.begin, end: this.end, colors: this.colors[$map](ui.Color, dart.fn(color => {
if (color == null) dart.nullFailed(I[0], 436, 40, "color");
return dart.nullCheck(ui.Color.lerp(null, color, factor));
}, T.ColorToColor()))[$toList](), stops: this.stops, tileMode: this.tileMode});
}
lerpFrom(a, t) {
if (t == null) dart.nullFailed(I[0], 443, 42, "t");
if (a == null || gradient.LinearGradient.is(a)) return gradient.LinearGradient.lerp(T.LinearGradientN().as(a), this, t);
return super.lerpFrom(a, t);
}
lerpTo(b, t) {
if (t == null) dart.nullFailed(I[0], 450, 40, "t");
if (b == null || gradient.LinearGradient.is(b)) return gradient.LinearGradient.lerp(this, T.LinearGradientN().as(b), t);
return super.lerpTo(b, t);
}
static lerp(a, b, t) {
if (t == null) dart.nullFailed(I[0], 475, 76, "t");
if (!(t != null)) dart.assertFailed(null, I[0], 476, 12, "t != null");
if (a == null && b == null) return null;
if (a == null) return dart.nullCheck(b).scale(t);
if (b == null) return a.scale(1.0 - dart.notNull(t));
let interpolated = gradient._interpolateColorsAndStops(a.colors, a[_impliedStops](), b.colors, b[_impliedStops](), t);
return new gradient.LinearGradient.new({begin: dart.nullCheck(alignment.AlignmentGeometry.lerp(a.begin, b.begin, t)), end: dart.nullCheck(alignment.AlignmentGeometry.lerp(a.end, b.end, t)), colors: interpolated.colors, stops: interpolated.stops, tileMode: dart.notNull(t) < 0.5 ? a.tileMode : b.tileMode});
}
_equals(other) {
if (other == null) return false;
if (this === other) return true;
if (!dart.equals(dart.runtimeType(other), this[$runtimeType])) return false;
return gradient.LinearGradient.is(other) && dart.equals(other.begin, this.begin) && dart.equals(other.end, this.end) && other.tileMode == this.tileMode && dart.test(collections.listEquals(ui.Color, other.colors, this.colors)) && dart.test(collections.listEquals(core.double, other.stops, this.stops));
}
get hashCode() {
return ui.hashValues(this.begin, this.end, this.tileMode, ui.hashList(this.colors), ui.hashList(this.stops));
}
toString() {
return dart.str(object.objectRuntimeType(this, "LinearGradient")) + "(" + dart.str(this.begin) + ", " + dart.str(this.end) + ", " + dart.str(this.colors) + ", " + dart.str(this.stops) + ", " + dart.str(this.tileMode) + ")";
}
};
(gradient.LinearGradient.new = function(opts) {
let begin = opts && 'begin' in opts ? opts.begin : C[0] || CT.C0;
if (begin == null) dart.nullFailed(I[0], 367, 10, "begin");
let end = opts && 'end' in opts ? opts.end : C[1] || CT.C1;
if (end == null) dart.nullFailed(I[0], 368, 10, "end");
let colors = opts && 'colors' in opts ? opts.colors : null;
if (colors == null) dart.nullFailed(I[0], 369, 26, "colors");
let stops = opts && 'stops' in opts ? opts.stops : null;
let tileMode = opts && 'tileMode' in opts ? opts.tileMode : C[2] || CT.C2;
if (tileMode == null) dart.nullFailed(I[0], 371, 10, "tileMode");
let transform = opts && 'transform' in opts ? opts.transform : null;
this[begin$] = begin;
this[end$] = end;
this[tileMode$] = tileMode;
if (!(begin != null)) dart.assertFailed(null, I[0], 373, 15, "begin != null");
if (!(end != null)) dart.assertFailed(null, I[0], 374, 15, "end != null");
if (!(tileMode != null)) dart.assertFailed(null, I[0], 375, 15, "tileMode != null");
gradient.LinearGradient.__proto__.new.call(this, {colors: colors, stops: stops, transform: transform});
;
}).prototype = gradient.LinearGradient.prototype;
dart.addTypeTests(gradient.LinearGradient);
dart.addTypeCaches(gradient.LinearGradient);
dart.setMethodSignature(gradient.LinearGradient, () => ({
__proto__: dart.getMethods(gradient.LinearGradient.__proto__),
createShader: dart.fnType(ui.Shader, [ui.Rect], {textDirection: dart.nullable(ui.TextDirection)}, {}),
scale: dart.fnType(gradient.LinearGradient, [core.double])
}));
dart.setLibraryUri(gradient.LinearGradient, I[1]);
dart.setFieldSignature(gradient.LinearGradient, () => ({
__proto__: dart.getFields(gradient.LinearGradient.__proto__),
begin: dart.finalFieldType(alignment.AlignmentGeometry),
end: dart.finalFieldType(alignment.AlignmentGeometry),
tileMode: dart.finalFieldType(ui.TileMode)
}));
dart.defineExtensionMethods(gradient.LinearGradient, ['_equals', 'toString']);
dart.defineExtensionAccessors(gradient.LinearGradient, ['hashCode']);
var center$ = dart.privateName(gradient, "RadialGradient.center");
var radius$ = dart.privateName(gradient, "RadialGradient.radius");
var tileMode$0 = dart.privateName(gradient, "RadialGradient.tileMode");
var focal$ = dart.privateName(gradient, "RadialGradient.focal");
var focalRadius$ = dart.privateName(gradient, "RadialGradient.focalRadius");
gradient.RadialGradient = class RadialGradient extends gradient.Gradient {
get center() {
return this[center$];
}
set center(value) {
super.center = value;
}
get radius() {
return this[radius$];
}
set radius(value) {
super.radius = value;
}
get tileMode() {
return this[tileMode$0];
}
set tileMode(value) {
super.tileMode = value;
}
get focal() {
return this[focal$];
}
set focal(value) {
super.focal = value;
}
get focalRadius() {
return this[focalRadius$];
}
set focalRadius(value) {
super.focalRadius = value;
}
createShader(rect, opts) {
if (rect == null) dart.nullFailed(I[0], 672, 28, "rect");
let textDirection = opts && 'textDirection' in opts ? opts.textDirection : null;
return ui.Gradient.radial(this.center.resolve(textDirection).withinRect(rect), dart.notNull(this.radius) * dart.notNull(rect.shortestSide), this.colors, this[_impliedStops](), this.tileMode, this[_resolveTransform](rect, textDirection), this.focal == null ? null : dart.nullCheck(this.focal).resolve(textDirection).withinRect(rect), dart.notNull(this.focalRadius) * dart.notNull(rect.shortestSide));
}
scale(factor) {
if (factor == null) dart.nullFailed(I[0], 688, 31, "factor");
return new gradient.RadialGradient.new({center: this.center, radius: this.radius, colors: this.colors[$map](ui.Color, dart.fn(color => {
if (color == null) dart.nullFailed(I[0], 692, 40, "color");
return dart.nullCheck(ui.Color.lerp(null, color, factor));
}, T.ColorToColor()))[$toList](), stops: this.stops, tileMode: this.tileMode, focal: this.focal, focalRadius: this.focalRadius});
}
lerpFrom(a, t) {
if (t == null) dart.nullFailed(I[0], 701, 42, "t");
if (a == null || gradient.RadialGradient.is(a)) return gradient.RadialGradient.lerp(T.RadialGradientN().as(a), this, t);
return super.lerpFrom(a, t);
}
lerpTo(b, t) {
if (t == null) dart.nullFailed(I[0], 708, 40, "t");
if (b == null || gradient.RadialGradient.is(b)) return gradient.RadialGradient.lerp(this, T.RadialGradientN().as(b), t);
return super.lerpTo(b, t);
}
static lerp(a, b, t) {
if (t == null) dart.nullFailed(I[0], 733, 76, "t");
if (!(t != null)) dart.assertFailed(null, I[0], 734, 12, "t != null");
if (a == null && b == null) return null;
if (a == null) return dart.nullCheck(b).scale(t);
if (b == null) return a.scale(1.0 - dart.notNull(t));
let interpolated = gradient._interpolateColorsAndStops(a.colors, a[_impliedStops](), b.colors, b[_impliedStops](), t);
return new gradient.RadialGradient.new({center: dart.nullCheck(alignment.AlignmentGeometry.lerp(a.center, b.center, t)), radius: math.max(core.double, 0.0, dart.nullCheck(ui.lerpDouble(a.radius, b.radius, t))), colors: interpolated.colors, stops: interpolated.stops, tileMode: dart.notNull(t) < 0.5 ? a.tileMode : b.tileMode, focal: alignment.AlignmentGeometry.lerp(a.focal, b.focal, t), focalRadius: math.max(core.double, 0.0, dart.nullCheck(ui.lerpDouble(a.focalRadius, b.focalRadius, t)))});
}
_equals(other) {
if (other == null) return false;
if (this === other) return true;
if (!dart.equals(dart.runtimeType(other), this[$runtimeType])) return false;
return gradient.RadialGradient.is(other) && dart.equals(other.center, this.center) && other.radius == this.radius && other.tileMode == this.tileMode && dart.test(collections.listEquals(ui.Color, other.colors, this.colors)) && dart.test(collections.listEquals(core.double, other.stops, this.stops)) && dart.equals(other.focal, this.focal) && other.focalRadius == this.focalRadius;
}
get hashCode() {
return ui.hashValues(this.center, this.radius, this.tileMode, ui.hashList(this.colors), ui.hashList(this.stops), this.focal, this.focalRadius);
}
toString() {
return dart.str(object.objectRuntimeType(this, "RadialGradient")) + "(" + dart.str(this.center) + ", " + dart.str(this.radius) + ", " + dart.str(this.colors) + ", " + dart.str(this.stops) + ", " + dart.str(this.tileMode) + ", " + dart.str(this.focal) + ", " + dart.str(this.focalRadius) + ")";
}
};
(gradient.RadialGradient.new = function(opts) {
let center = opts && 'center' in opts ? opts.center : C[3] || CT.C3;
if (center == null) dart.nullFailed(I[0], 597, 10, "center");
let radius = opts && 'radius' in opts ? opts.radius : 0.5;
if (radius == null) dart.nullFailed(I[0], 598, 10, "radius");
let colors = opts && 'colors' in opts ? opts.colors : null;
if (colors == null) dart.nullFailed(I[0], 599, 26, "colors");
let stops = opts && 'stops' in opts ? opts.stops : null;
let tileMode = opts && 'tileMode' in opts ? opts.tileMode : C[2] || CT.C2;
if (tileMode == null) dart.nullFailed(I[0], 601, 10, "tileMode");
let focal = opts && 'focal' in opts ? opts.focal : null;
let focalRadius = opts && 'focalRadius' in opts ? opts.focalRadius : 0;
if (focalRadius == null) dart.nullFailed(I[0], 603, 10, "focalRadius");
let transform = opts && 'transform' in opts ? opts.transform : null;
this[center$] = center;
this[radius$] = radius;
this[tileMode$0] = tileMode;
this[focal$] = focal;
this[focalRadius$] = focalRadius;
if (!(center != null)) dart.assertFailed(null, I[0], 605, 15, "center != null");
if (!(radius != null)) dart.assertFailed(null, I[0], 606, 15, "radius != null");
if (!(tileMode != null)) dart.assertFailed(null, I[0], 607, 15, "tileMode != null");
if (!(focalRadius != null)) dart.assertFailed(null, I[0], 608, 15, "focalRadius != null");
gradient.RadialGradient.__proto__.new.call(this, {colors: colors, stops: stops, transform: transform});
;
}).prototype = gradient.RadialGradient.prototype;
dart.addTypeTests(gradient.RadialGradient);
dart.addTypeCaches(gradient.RadialGradient);
dart.setMethodSignature(gradient.RadialGradient, () => ({
__proto__: dart.getMethods(gradient.RadialGradient.__proto__),
createShader: dart.fnType(ui.Shader, [ui.Rect], {textDirection: dart.nullable(ui.TextDirection)}, {}),
scale: dart.fnType(gradient.RadialGradient, [core.double])
}));
dart.setLibraryUri(gradient.RadialGradient, I[1]);
dart.setFieldSignature(gradient.RadialGradient, () => ({
__proto__: dart.getFields(gradient.RadialGradient.__proto__),
center: dart.finalFieldType(alignment.AlignmentGeometry),
radius: dart.finalFieldType(core.double),
tileMode: dart.finalFieldType(ui.TileMode),
focal: dart.finalFieldType(dart.nullable(alignment.AlignmentGeometry)),
focalRadius: dart.finalFieldType(core.double)
}));
dart.defineExtensionMethods(gradient.RadialGradient, ['_equals', 'toString']);
dart.defineExtensionAccessors(gradient.RadialGradient, ['hashCode']);
var center$0 = dart.privateName(gradient, "SweepGradient.center");
var startAngle$ = dart.privateName(gradient, "SweepGradient.startAngle");
var endAngle$ = dart.privateName(gradient, "SweepGradient.endAngle");
var tileMode$1 = dart.privateName(gradient, "SweepGradient.tileMode");
gradient.SweepGradient = class SweepGradient extends gradient.Gradient {
get center() {
return this[center$0];
}
set center(value) {
super.center = value;
}
get startAngle() {
return this[startAngle$];
}
set startAngle(value) {
super.startAngle = value;
}
get endAngle() {
return this[endAngle$];
}
set endAngle(value) {
super.endAngle = value;
}
get tileMode() {
return this[tileMode$1];
}
set tileMode(value) {
super.tileMode = value;
}
createShader(rect, opts) {
if (rect == null) dart.nullFailed(I[0], 922, 28, "rect");
let textDirection = opts && 'textDirection' in opts ? opts.textDirection : null;
return ui.Gradient.sweep(this.center.resolve(textDirection).withinRect(rect), this.colors, this[_impliedStops](), this.tileMode, this.startAngle, this.endAngle, this[_resolveTransform](rect, textDirection));
}
scale(factor) {
if (factor == null) dart.nullFailed(I[0], 937, 30, "factor");
return new gradient.SweepGradient.new({center: this.center, startAngle: this.startAngle, endAngle: this.endAngle, colors: this.colors[$map](ui.Color, dart.fn(color => {
if (color == null) dart.nullFailed(I[0], 942, 40, "color");
return dart.nullCheck(ui.Color.lerp(null, color, factor));
}, T.ColorToColor()))[$toList](), stops: this.stops, tileMode: this.tileMode});
}
lerpFrom(a, t) {
if (t == null) dart.nullFailed(I[0], 949, 42, "t");
if (a == null || gradient.SweepGradient.is(a)) return gradient.SweepGradient.lerp(T.SweepGradientN().as(a), this, t);
return super.lerpFrom(a, t);
}
lerpTo(b, t) {
if (t == null) dart.nullFailed(I[0], 956, 40, "t");
if (b == null || gradient.SweepGradient.is(b)) return gradient.SweepGradient.lerp(this, T.SweepGradientN().as(b), t);
return super.lerpTo(b, t);
}
static lerp(a, b, t) {
if (t == null) dart.nullFailed(I[0], 980, 73, "t");
if (!(t != null)) dart.assertFailed(null, I[0], 981, 12, "t != null");
if (a == null && b == null) return null;
if (a == null) return dart.nullCheck(b).scale(t);
if (b == null) return a.scale(1.0 - dart.notNull(t));
let interpolated = gradient._interpolateColorsAndStops(a.colors, a[_impliedStops](), b.colors, b[_impliedStops](), t);
return new gradient.SweepGradient.new({center: dart.nullCheck(alignment.AlignmentGeometry.lerp(a.center, b.center, t)), startAngle: math.max(core.double, 0.0, dart.nullCheck(ui.lerpDouble(a.startAngle, b.startAngle, t))), endAngle: math.max(core.double, 0.0, dart.nullCheck(ui.lerpDouble(a.endAngle, b.endAngle, t))), colors: interpolated.colors, stops: interpolated.stops, tileMode: dart.notNull(t) < 0.5 ? a.tileMode : b.tileMode});
}
_equals(other) {
if (other == null) return false;
if (this === other) return true;
if (!dart.equals(dart.runtimeType(other), this[$runtimeType])) return false;
return gradient.SweepGradient.is(other) && dart.equals(other.center, this.center) && other.startAngle == this.startAngle && other.endAngle == this.endAngle && other.tileMode == this.tileMode && dart.test(collections.listEquals(ui.Color, other.colors, this.colors)) && dart.test(collections.listEquals(core.double, other.stops, this.stops));
}
get hashCode() {
return ui.hashValues(this.center, this.startAngle, this.endAngle, this.tileMode, ui.hashList(this.colors), ui.hashList(this.stops));
}
toString() {
return dart.str(object.objectRuntimeType(this, "SweepGradient")) + "(" + dart.str(this.center) + ", " + dart.str(this.startAngle) + ", " + dart.str(this.endAngle) + ", " + dart.str(this.colors) + ", " + dart.str(this.stops) + ", " + dart.str(this.tileMode) + ")";
}
};
(gradient.SweepGradient.new = function(opts) {
let center = opts && 'center' in opts ? opts.center : C[3] || CT.C3;
if (center == null) dart.nullFailed(I[0], 872, 10, "center");
let startAngle = opts && 'startAngle' in opts ? opts.startAngle : 0;
if (startAngle == null) dart.nullFailed(I[0], 873, 10, "startAngle");
let endAngle = opts && 'endAngle' in opts ? opts.endAngle : 6.283185307179586;
if (endAngle == null) dart.nullFailed(I[0], 874, 10, "endAngle");
let colors = opts && 'colors' in opts ? opts.colors : null;
if (colors == null) dart.nullFailed(I[0], 875, 26, "colors");
let stops = opts && 'stops' in opts ? opts.stops : null;
let tileMode = opts && 'tileMode' in opts ? opts.tileMode : C[2] || CT.C2;
if (tileMode == null) dart.nullFailed(I[0], 877, 10, "tileMode");
let transform = opts && 'transform' in opts ? opts.transform : null;
this[center$0] = center;
this[startAngle$] = startAngle;
this[endAngle$] = endAngle;
this[tileMode$1] = tileMode;
if (!(center != null)) dart.assertFailed(null, I[0], 879, 15, "center != null");
if (!(startAngle != null)) dart.assertFailed(null, I[0], 880, 15, "startAngle != null");
if (!(endAngle != null)) dart.assertFailed(null, I[0], 881, 15, "endAngle != null");
if (!(tileMode != null)) dart.assertFailed(null, I[0], 882, 15, "tileMode != null");
gradient.SweepGradient.__proto__.new.call(this, {colors: colors, stops: stops, transform: transform});
;
}).prototype = gradient.SweepGradient.prototype;
dart.addTypeTests(gradient.SweepGradient);
dart.addTypeCaches(gradient.SweepGradient);
dart.setMethodSignature(gradient.SweepGradient, () => ({
__proto__: dart.getMethods(gradient.SweepGradient.__proto__),
createShader: dart.fnType(ui.Shader, [ui.Rect], {textDirection: dart.nullable(ui.TextDirection)}, {}),
scale: dart.fnType(gradient.SweepGradient, [core.double])
}));
dart.setLibraryUri(gradient.SweepGradient, I[1]);
dart.setFieldSignature(gradient.SweepGradient, () => ({
__proto__: dart.getFields(gradient.SweepGradient.__proto__),
center: dart.finalFieldType(alignment.AlignmentGeometry),
startAngle: dart.finalFieldType(core.double),
endAngle: dart.finalFieldType(core.double),
tileMode: dart.finalFieldType(ui.TileMode)
}));
dart.defineExtensionMethods(gradient.SweepGradient, ['_equals', 'toString']);
dart.defineExtensionAccessors(gradient.SweepGradient, ['hashCode']);
gradient._sample = function _sample(colors, stops, t) {
if (colors == null) dart.nullFailed(I[0], 24, 27, "colors");
if (stops == null) dart.nullFailed(I[0], 24, 48, "stops");
if (t == null) dart.nullFailed(I[0], 24, 62, "t");
if (!(colors != null)) dart.assertFailed(null, I[0], 25, 10, "colors != null");
if (!dart.test(colors[$isNotEmpty])) dart.assertFailed(null, I[0], 26, 10, "colors.isNotEmpty");
if (!(stops != null)) dart.assertFailed(null, I[0], 27, 10, "stops != null");
if (!dart.test(stops[$isNotEmpty])) dart.assertFailed(null, I[0], 28, 10, "stops.isNotEmpty");
if (!(t != null)) dart.assertFailed(null, I[0], 29, 10, "t != null");
if (dart.notNull(t) <= dart.notNull(stops[$first])) return colors[$first];
if (dart.notNull(t) >= dart.notNull(stops[$last])) return colors[$last];
let index = stops[$lastIndexWhere](dart.fn(s => {
if (s == null) dart.nullFailed(I[0], 34, 50, "s");
return dart.notNull(s) <= dart.notNull(t);
}, T.doubleTobool()));
if (!(index !== -1)) dart.assertFailed(null, I[0], 35, 10, "index != -1");
return dart.nullCheck(ui.Color.lerp(colors[$_get](index), colors[$_get](dart.notNull(index) + 1), (dart.notNull(t) - dart.notNull(stops[$_get](index))) / (dart.notNull(stops[$_get](dart.notNull(index) + 1)) - dart.notNull(stops[$_get](index)))));
};
gradient._interpolateColorsAndStops = function _interpolateColorsAndStops(aColors, aStops, bColors, bStops, t) {
let t0;
if (aColors == null) dart.nullFailed(I[0], 43, 15, "aColors");
if (aStops == null) dart.nullFailed(I[0], 44, 16, "aStops");
if (bColors == null) dart.nullFailed(I[0], 45, 15, "bColors");
if (bStops == null) dart.nullFailed(I[0], 46, 16, "bStops");
if (t == null) dart.nullFailed(I[0], 47, 10, "t");
if (!(dart.notNull(aColors[$length]) >= 2)) dart.assertFailed(null, I[0], 49, 10, "aColors.length >= 2");
if (!(dart.notNull(bColors[$length]) >= 2)) dart.assertFailed(null, I[0], 50, 10, "bColors.length >= 2");
if (!(aStops[$length] == aColors[$length])) dart.assertFailed(null, I[0], 51, 10, "aStops.length == aColors.length");
if (!(bStops[$length] == bColors[$length])) dart.assertFailed(null, I[0], 52, 10, "bStops.length == bColors.length");
let stops = (t0 = new (T.SplayTreeSetOfdouble()).new(), (() => {
t0.addAll(aStops);
t0.addAll(bStops);
return t0;
})());
let interpolatedStops = stops.toList({growable: false});
let interpolatedColors = interpolatedStops[$map](ui.Color, dart.fn(stop => {
if (stop == null) dart.nullFailed(I[0], 58, 19, "stop");
return dart.nullCheck(ui.Color.lerp(gradient._sample(aColors, aStops, stop), gradient._sample(bColors, bStops, stop), t));
}, T.doubleToColor()))[$toList]({growable: false});
return new gradient._ColorsAndStops.new(interpolatedColors, interpolatedStops);
};
dart.trackLibraries("packages/flutter/src/painting/gradient.dart", {
"package:flutter/src/painting/gradient.dart": gradient
}, {
}, '{"version":3,"sourceRoot":"","sources":["gradient.dart"],"names":[],"mappings":"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","file":"../../../../../../../../../../../packages/flutter/src/painting/gradient.dart.lib.js"}');
// Exports:
return {
src__painting__gradient: gradient
};
}));
//# sourceMappingURL=gradient.dart.lib.js.map
define(['dart_sdk', 'packages/flutter/src/painting/basic_types.dart'], (function load__packages__flutter__src__painting__edge_insets_dart(dart_sdk, packages__flutter__src__painting__basic_types$46dart) {
'use strict';
const core = dart_sdk.core;
const _internal = dart_sdk._internal;
const ui = dart_sdk.ui;
const dart = dart_sdk.dart;
const dartx = dart_sdk.dartx;
const basic_types = packages__flutter__src__painting__basic_types$46dart.src__painting__basic_types;
var edge_insets = Object.create(dart.library);
var $clamp = dartx.clamp;
var $toStringAsFixed = dartx.toStringAsFixed;
var $truncate = dartx.truncate;
var $toDouble = dartx.toDouble;
var $modulo = dartx['%'];
dart._checkModuleNullSafetyMode(false);
var T = {
_: () => T
};
var T$Eval = Object.assign({
_: () => T$Eval
}, T);
var S = {
_: () => S
};
var S$Eval = Object.assign({
_: () => S$Eval
}, S);
const CT = Object.create({
_: () => (C, CT)
});
dart.defineLazy(CT, {
get C0() {
return C[0] = dart.const({
__proto__: basic_types.Axis.prototype,
[_name]: "Axis.horizontal",
index: 0
});
},
get C1() {
return C[1] = dart.const({
__proto__: basic_types.Axis.prototype,
[_name]: "Axis.vertical",
index: 1
});
},
get C2() {
return C[2] = dart.const({
__proto__: edge_insets._MixedEdgeInsets.prototype,
[_MixedEdgeInsets__bottom]: 1 / 0,
[_MixedEdgeInsets__top]: 1 / 0,
[_MixedEdgeInsets__end]: 1 / 0,
[_MixedEdgeInsets__start]: 1 / 0,
[_MixedEdgeInsets__right]: 1 / 0,
[_MixedEdgeInsets__left]: 1 / 0
});
},
get C3() {
return C[3] = dart.const({
__proto__: edge_insets.EdgeInsets.prototype,
[bottom$]: 0,
[right$]: 0,
[top$]: 0,
[left$]: 0
});
},
get C4() {
return C[4] = dart.const({
__proto__: ui.TextDirection.prototype,
[_name$]: "TextDirection.rtl",
index: 0
});
},
get C5() {
return C[5] = dart.const({
__proto__: ui.TextDirection.prototype,
[_name$]: "TextDirection.ltr",
index: 1
});
},
get C6() {
return C[6] = dart.const({
__proto__: edge_insets.EdgeInsetsDirectional.prototype,
[bottom$0]: 0,
[end$]: 0,
[top$0]: 0,
[start$]: 0
});
}
}, false);
var C = Array(7).fill(void 0);
var I = [
"file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/painting/edge_insets.dart",
"package:flutter/src/painting/edge_insets.dart"
];
var _left = dart.privateName(edge_insets, "_left");
var _right = dart.privateName(edge_insets, "_right");
var _start = dart.privateName(edge_insets, "_start");
var _end = dart.privateName(edge_insets, "_end");
var _top = dart.privateName(edge_insets, "_top");
var _bottom = dart.privateName(edge_insets, "_bottom");
var _name = dart.privateName(basic_types, "_name");
var _MixedEdgeInsets__bottom = dart.privateName(edge_insets, "_MixedEdgeInsets._bottom");
var _MixedEdgeInsets__top = dart.privateName(edge_insets, "_MixedEdgeInsets._top");
var _MixedEdgeInsets__end = dart.privateName(edge_insets, "_MixedEdgeInsets._end");
var _MixedEdgeInsets__start = dart.privateName(edge_insets, "_MixedEdgeInsets._start");
var _MixedEdgeInsets__right = dart.privateName(edge_insets, "_MixedEdgeInsets._right");
var _MixedEdgeInsets__left = dart.privateName(edge_insets, "_MixedEdgeInsets._left");
edge_insets.EdgeInsetsGeometry = class EdgeInsetsGeometry extends core.Object {
get isNonNegative() {
return dart.notNull(this[_left]) >= 0.0 && dart.notNull(this[_right]) >= 0.0 && dart.notNull(this[_start]) >= 0.0 && dart.notNull(this[_end]) >= 0.0 && dart.notNull(this[_top]) >= 0.0 && dart.notNull(this[_bottom]) >= 0.0;
}
get horizontal() {
return dart.notNull(this[_left]) + dart.notNull(this[_right]) + dart.notNull(this[_start]) + dart.notNull(this[_end]);
}
get vertical() {
return dart.notNull(this[_top]) + dart.notNull(this[_bottom]);
}
along(axis) {
if (axis == null) dart.nullFailed(I[0], 67, 21, "axis");
if (!(axis != null)) dart.assertFailed(null, I[0], 68, 12, "axis != null");
switch (axis) {
case C[0] || CT.C0:
{
return this.horizontal;
}
case C[1] || CT.C1:
{
return this.vertical;
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
}
get collapsedSize() {
return new ui.Size.new(this.horizontal, this.vertical);
}
get flipped() {
return new edge_insets._MixedEdgeInsets.fromLRSETB(this[_right], this[_left], this[_end], this[_start], this[_bottom], this[_top]);
}
inflateSize(size) {
if (size == null) dart.nullFailed(I[0], 92, 25, "size");
return new ui.Size.new(dart.notNull(size.width) + dart.notNull(this.horizontal), dart.notNull(size.height) + dart.notNull(this.vertical));
}
deflateSize(size) {
if (size == null) dart.nullFailed(I[0], 108, 25, "size");
return new ui.Size.new(dart.notNull(size.width) - dart.notNull(this.horizontal), dart.notNull(size.height) - dart.notNull(this.vertical));
}
subtract(other) {
if (other == null) dart.nullFailed(I[0], 128, 50, "other");
return new edge_insets._MixedEdgeInsets.fromLRSETB(dart.notNull(this[_left]) - dart.notNull(other[_left]), dart.notNull(this[_right]) - dart.notNull(other[_right]), dart.notNull(this[_start]) - dart.notNull(other[_start]), dart.notNull(this[_end]) - dart.notNull(other[_end]), dart.notNull(this[_top]) - dart.notNull(other[_top]), dart.notNull(this[_bottom]) - dart.notNull(other[_bottom]));
}
add(other) {
if (other == null) dart.nullFailed(I[0], 150, 45, "other");
return new edge_insets._MixedEdgeInsets.fromLRSETB(dart.notNull(this[_left]) + dart.notNull(other[_left]), dart.notNull(this[_right]) + dart.notNull(other[_right]), dart.notNull(this[_start]) + dart.notNull(other[_start]), dart.notNull(this[_end]) + dart.notNull(other[_end]), dart.notNull(this[_top]) + dart.notNull(other[_top]), dart.notNull(this[_bottom]) + dart.notNull(other[_bottom]));
}
clamp(min, max) {
if (min == null) dart.nullFailed(I[0], 163, 47, "min");
if (max == null) dart.nullFailed(I[0], 163, 71, "max");
return new edge_insets._MixedEdgeInsets.fromLRSETB(this[_left][$clamp](min[_left], max[_left]), this[_right][$clamp](min[_right], max[_right]), this[_start][$clamp](min[_start], max[_start]), this[_end][$clamp](min[_end], max[_end]), this[_top][$clamp](min[_top], max[_top]), this[_bottom][$clamp](min[_bottom], max[_bottom]));
}
static lerp(a, b, t) {
if (t == null) dart.nullFailed(I[0], 219, 88, "t");
if (!(t != null)) dart.assertFailed(null, I[0], 220, 12, "t != null");
if (a == null && b == null) return null;
if (a == null) return dart.nullCheck(b)['*'](t);
if (b == null) return a['*'](1.0 - dart.notNull(t));
if (edge_insets.EdgeInsets.is(a) && edge_insets.EdgeInsets.is(b)) return edge_insets.EdgeInsets.lerp(a, b, t);
if (edge_insets.EdgeInsetsDirectional.is(a) && edge_insets.EdgeInsetsDirectional.is(b)) return edge_insets.EdgeInsetsDirectional.lerp(a, b, t);
return new edge_insets._MixedEdgeInsets.fromLRSETB(dart.nullCheck(ui.lerpDouble(a[_left], b[_left], t)), dart.nullCheck(ui.lerpDouble(a[_right], b[_right], t)), dart.nullCheck(ui.lerpDouble(a[_start], b[_start], t)), dart.nullCheck(ui.lerpDouble(a[_end], b[_end], t)), dart.nullCheck(ui.lerpDouble(a[_top], b[_top], t)), dart.nullCheck(ui.lerpDouble(a[_bottom], b[_bottom], t)));
}
toString() {
if (this[_start] === 0.0 && this[_end] === 0.0) {
if (this[_left] === 0.0 && this[_right] === 0.0 && this[_top] === 0.0 && this[_bottom] === 0.0) return "EdgeInsets.zero";
if (this[_left] == this[_right] && this[_right] == this[_top] && this[_top] == this[_bottom]) return "EdgeInsets.all(" + this[_left][$toStringAsFixed](1) + ")";
return "EdgeInsets(" + this[_left][$toStringAsFixed](1) + ", " + this[_top][$toStringAsFixed](1) + ", " + this[_right][$toStringAsFixed](1) + ", " + this[_bottom][$toStringAsFixed](1) + ")";
}
if (this[_left] === 0.0 && this[_right] === 0.0) {
return "EdgeInsetsDirectional(" + this[_start][$toStringAsFixed](1) + ", " + this[_top][$toStringAsFixed](1) + ", " + this[_end][$toStringAsFixed](1) + ", " + this[_bottom][$toStringAsFixed](1) + ")";
}
return "EdgeInsets(" + this[_left][$toStringAsFixed](1) + ", " + this[_top][$toStringAsFixed](1) + ", " + this[_right][$toStringAsFixed](1) + ", " + this[_bottom][$toStringAsFixed](1) + ")" + " + " + "EdgeInsetsDirectional(" + this[_start][$toStringAsFixed](1) + ", " + "0.0, " + this[_end][$toStringAsFixed](1) + ", " + "0.0)";
}
_equals(other) {
if (other == null) return false;
return edge_insets.EdgeInsetsGeometry.is(other) && other[_left] == this[_left] && other[_right] == this[_right] && other[_start] == this[_start] && other[_end] == this[_end] && other[_top] == this[_top] && other[_bottom] == this[_bottom];
}
get hashCode() {
return ui.hashValues(this[_left], this[_right], this[_start], this[_end], this[_top], this[_bottom]);
}
};
(edge_insets.EdgeInsetsGeometry.new = function() {
;
}).prototype = edge_insets.EdgeInsetsGeometry.prototype;
dart.addTypeTests(edge_insets.EdgeInsetsGeometry);
dart.addTypeCaches(edge_insets.EdgeInsetsGeometry);
dart.setMethodSignature(edge_insets.EdgeInsetsGeometry, () => ({
__proto__: dart.getMethods(edge_insets.EdgeInsetsGeometry.__proto__),
along: dart.fnType(core.double, [basic_types.Axis]),
inflateSize: dart.fnType(ui.Size, [ui.Size]),
deflateSize: dart.fnType(ui.Size, [ui.Size]),
subtract: dart.fnType(edge_insets.EdgeInsetsGeometry, [edge_insets.EdgeInsetsGeometry]),
add: dart.fnType(edge_insets.EdgeInsetsGeometry, [edge_insets.EdgeInsetsGeometry]),
clamp: dart.fnType(edge_insets.EdgeInsetsGeometry, [edge_insets.EdgeInsetsGeometry, edge_insets.EdgeInsetsGeometry])
}));
dart.setGetterSignature(edge_insets.EdgeInsetsGeometry, () => ({
__proto__: dart.getGetters(edge_insets.EdgeInsetsGeometry.__proto__),
isNonNegative: core.bool,
horizontal: core.double,
vertical: core.double,
collapsedSize: ui.Size,
flipped: edge_insets.EdgeInsetsGeometry
}));
dart.setLibraryUri(edge_insets.EdgeInsetsGeometry, I[1]);
dart.defineExtensionMethods(edge_insets.EdgeInsetsGeometry, ['toString', '_equals']);
dart.defineExtensionAccessors(edge_insets.EdgeInsetsGeometry, ['hashCode']);
dart.defineLazy(edge_insets.EdgeInsetsGeometry, {
/*edge_insets.EdgeInsetsGeometry.infinity*/get infinity() {
return C[2] || CT.C2;
}
}, false);
var left$ = dart.privateName(edge_insets, "EdgeInsets.left");
var top$ = dart.privateName(edge_insets, "EdgeInsets.top");
var right$ = dart.privateName(edge_insets, "EdgeInsets.right");
var bottom$ = dart.privateName(edge_insets, "EdgeInsets.bottom");
edge_insets.EdgeInsets = class EdgeInsets extends edge_insets.EdgeInsetsGeometry {
get left() {
return this[left$];
}
set left(value) {
super.left = value;
}
get top() {
return this[top$];
}
set top(value) {
super.top = value;
}
get right() {
return this[right$];
}
set right(value) {
super.right = value;
}
get bottom() {
return this[bottom$];
}
set bottom(value) {
super.bottom = value;
}
get [_left]() {
return this.left;
}
get [_top]() {
return this.top;
}
get [_right]() {
return this.right;
}
get [_bottom]() {
return this.bottom;
}
get [_start]() {
return 0.0;
}
get [_end]() {
return 0.0;
}
get topLeft() {
return new ui.Offset.new(this.left, this.top);
}
get topRight() {
return new ui.Offset.new(-dart.notNull(this.right), this.top);
}
get bottomLeft() {
return new ui.Offset.new(this.left, -dart.notNull(this.bottom));
}
get bottomRight() {
return new ui.Offset.new(-dart.notNull(this.right), -dart.notNull(this.bottom));
}
get flipped() {
return new edge_insets.EdgeInsets.fromLTRB(this.right, this.bottom, this.left, this.top);
}
inflateRect(rect) {
if (rect == null) dart.nullFailed(I[0], 471, 25, "rect");
return new ui.Rect.fromLTRB(dart.notNull(rect.left) - dart.notNull(this.left), dart.notNull(rect.top) - dart.notNull(this.top), dart.notNull(rect.right) + dart.notNull(this.right), dart.notNull(rect.bottom) + dart.notNull(this.bottom));
}
deflateRect(rect) {
if (rect == null) dart.nullFailed(I[0], 488, 25, "rect");
return new ui.Rect.fromLTRB(dart.notNull(rect.left) + dart.notNull(this.left), dart.notNull(rect.top) + dart.notNull(this.top), dart.notNull(rect.right) - dart.notNull(this.right), dart.notNull(rect.bottom) - dart.notNull(this.bottom));
}
subtract(other) {
if (other == null) dart.nullFailed(I[0], 493, 50, "other");
if (edge_insets.EdgeInsets.is(other)) return this['-'](other);
return super.subtract(other);
}
add(other) {
if (other == null) dart.nullFailed(I[0], 500, 45, "other");
if (edge_insets.EdgeInsets.is(other)) return this['+'](other);
return super.add(other);
}
clamp(min, max) {
if (min == null) dart.nullFailed(I[0], 507, 47, "min");
if (max == null) dart.nullFailed(I[0], 507, 71, "max");
return new edge_insets.EdgeInsets.fromLTRB(this[_left][$clamp](min[_left], max[_left]), this[_top][$clamp](min[_top], max[_top]), this[_right][$clamp](min[_right], max[_right]), this[_bottom][$clamp](min[_bottom], max[_bottom]));
}
['-'](other) {
if (other == null) dart.nullFailed(I[0], 517, 36, "other");
return new edge_insets.EdgeInsets.fromLTRB(dart.notNull(this.left) - dart.notNull(other.left), dart.notNull(this.top) - dart.notNull(other.top), dart.notNull(this.right) - dart.notNull(other.right), dart.notNull(this.bottom) - dart.notNull(other.bottom));
}
['+'](other) {
if (other == null) dart.nullFailed(I[0], 527, 36, "other");
return new edge_insets.EdgeInsets.fromLTRB(dart.notNull(this.left) + dart.notNull(other.left), dart.notNull(this.top) + dart.notNull(other.top), dart.notNull(this.right) + dart.notNull(other.right), dart.notNull(this.bottom) + dart.notNull(other.bottom));
}
_negate() {
return new edge_insets.EdgeInsets.fromLTRB(-dart.notNull(this.left), -dart.notNull(this.top), -dart.notNull(this.right), -dart.notNull(this.bottom));
}
['*'](other) {
if (other == null) dart.nullFailed(I[0], 551, 32, "other");
return new edge_insets.EdgeInsets.fromLTRB(dart.notNull(this.left) * dart.notNull(other), dart.notNull(this.top) * dart.notNull(other), dart.notNull(this.right) * dart.notNull(other), dart.notNull(this.bottom) * dart.notNull(other));
}
['/'](other) {
if (other == null) dart.nullFailed(I[0], 562, 32, "other");
return new edge_insets.EdgeInsets.fromLTRB(dart.notNull(this.left) / dart.notNull(other), dart.notNull(this.top) / dart.notNull(other), dart.notNull(this.right) / dart.notNull(other), dart.notNull(this.bottom) / dart.notNull(other));
}
['~/'](other) {
if (other == null) dart.nullFailed(I[0], 573, 33, "other");
return new edge_insets.EdgeInsets.fromLTRB((dart.notNull(this.left) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this.top) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this.right) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this.bottom) / dart.notNull(other))[$truncate]()[$toDouble]());
}
['%'](other) {
if (other == null) dart.nullFailed(I[0], 584, 32, "other");
return new edge_insets.EdgeInsets.fromLTRB(this.left[$modulo](other), this.top[$modulo](other), this.right[$modulo](other), this.bottom[$modulo](other));
}
static lerp(a, b, t) {
if (t == null) dart.nullFailed(I[0], 598, 64, "t");
if (!(t != null)) dart.assertFailed(null, I[0], 599, 12, "t != null");
if (a == null && b == null) return null;
if (a == null) return dart.nullCheck(b)['*'](t);
if (b == null) return a['*'](1.0 - dart.notNull(t));
return new edge_insets.EdgeInsets.fromLTRB(dart.nullCheck(ui.lerpDouble(a.left, b.left, t)), dart.nullCheck(ui.lerpDouble(a.top, b.top, t)), dart.nullCheck(ui.lerpDouble(a.right, b.right, t)), dart.nullCheck(ui.lerpDouble(a.bottom, b.bottom, t)));
}
resolve(direction) {
return this;
}
copyWith(opts) {
let t0, t0$, t0$0, t0$1;
let left = opts && 'left' in opts ? opts.left : null;
let top = opts && 'top' in opts ? opts.top : null;
let right = opts && 'right' in opts ? opts.right : null;
let bottom = opts && 'bottom' in opts ? opts.bottom : null;
return new edge_insets.EdgeInsets.only({left: (t0 = left, t0 == null ? this.left : t0), top: (t0$ = top, t0$ == null ? this.top : t0$), right: (t0$0 = right, t0$0 == null ? this.right : t0$0), bottom: (t0$1 = bottom, t0$1 == null ? this.bottom : t0$1)});
}
};
(edge_insets.EdgeInsets.fromLTRB = function(left, top, right, bottom) {
if (left == null) dart.nullFailed(I[0], 343, 34, "left");
if (top == null) dart.nullFailed(I[0], 343, 45, "top");
if (right == null) dart.nullFailed(I[0], 343, 55, "right");
if (bottom == null) dart.nullFailed(I[0], 343, 67, "bottom");
this[left$] = left;
this[top$] = top;
this[right$] = right;
this[bottom$] = bottom;
edge_insets.EdgeInsets.__proto__.new.call(this);
;
}).prototype = edge_insets.EdgeInsets.prototype;
(edge_insets.EdgeInsets.all = function(value) {
if (value == null) dart.nullFailed(I[0], 355, 31, "value");
this[left$] = value;
this[top$] = value;
this[right$] = value;
this[bottom$] = value;
edge_insets.EdgeInsets.__proto__.new.call(this);
;
}).prototype = edge_insets.EdgeInsets.prototype;
(edge_insets.EdgeInsets.only = function(opts) {
let left = opts && 'left' in opts ? opts.left : 0;
if (left == null) dart.nullFailed(I[0], 372, 10, "left");
let top = opts && 'top' in opts ? opts.top : 0;
if (top == null) dart.nullFailed(I[0], 373, 10, "top");
let right = opts && 'right' in opts ? opts.right : 0;
if (right == null) dart.nullFailed(I[0], 374, 10, "right");
let bottom = opts && 'bottom' in opts ? opts.bottom : 0;
if (bottom == null) dart.nullFailed(I[0], 375, 10, "bottom");
this[left$] = left;
this[top$] = top;
this[right$] = right;
this[bottom$] = bottom;
edge_insets.EdgeInsets.__proto__.new.call(this);
;
}).prototype = edge_insets.EdgeInsets.prototype;
(edge_insets.EdgeInsets.symmetric = function(opts) {
let vertical = opts && 'vertical' in opts ? opts.vertical : 0;
if (vertical == null) dart.nullFailed(I[0], 389, 12, "vertical");
let horizontal = opts && 'horizontal' in opts ? opts.horizontal : 0;
if (horizontal == null) dart.nullFailed(I[0], 390, 12, "horizontal");
this[left$] = horizontal;
this[top$] = vertical;
this[right$] = horizontal;
this[bottom$] = vertical;
edge_insets.EdgeInsets.__proto__.new.call(this);
;
}).prototype = edge_insets.EdgeInsets.prototype;
(edge_insets.EdgeInsets.fromWindowPadding = function(padding, devicePixelRatio) {
if (padding == null) dart.nullFailed(I[0], 402, 49, "padding");
if (devicePixelRatio == null) dart.nullFailed(I[0], 402, 65, "devicePixelRatio");
this[left$] = dart.notNull(padding.left) / dart.notNull(devicePixelRatio);
this[top$] = dart.notNull(padding.top) / dart.notNull(devicePixelRatio);
this[right$] = dart.notNull(padding.right) / dart.notNull(devicePixelRatio);
this[bottom$] = dart.notNull(padding.bottom) / dart.notNull(devicePixelRatio);
edge_insets.EdgeInsets.__proto__.new.call(this);
;
}).prototype = edge_insets.EdgeInsets.prototype;
dart.addTypeTests(edge_insets.EdgeInsets);
dart.addTypeCaches(edge_insets.EdgeInsets);
dart.setMethodSignature(edge_insets.EdgeInsets, () => ({
__proto__: dart.getMethods(edge_insets.EdgeInsets.__proto__),
inflateRect: dart.fnType(ui.Rect, [ui.Rect]),
deflateRect: dart.fnType(ui.Rect, [ui.Rect]),
'-': dart.fnType(edge_insets.EdgeInsets, [edge_insets.EdgeInsets]),
'+': dart.fnType(edge_insets.EdgeInsets, [edge_insets.EdgeInsets]),
_negate: dart.fnType(edge_insets.EdgeInsets, []),
'*': dart.fnType(edge_insets.EdgeInsets, [core.double]),
'/': dart.fnType(edge_insets.EdgeInsets, [core.double]),
'~/': dart.fnType(edge_insets.EdgeInsets, [core.double]),
'%': dart.fnType(edge_insets.EdgeInsets, [core.double]),
resolve: dart.fnType(edge_insets.EdgeInsets, [dart.nullable(ui.TextDirection)]),
copyWith: dart.fnType(edge_insets.EdgeInsets, [], {bottom: dart.nullable(core.double), left: dart.nullable(core.double), right: dart.nullable(core.double), top: dart.nullable(core.double)}, {})
}));
dart.setGetterSignature(edge_insets.EdgeInsets, () => ({
__proto__: dart.getGetters(edge_insets.EdgeInsets.__proto__),
[_left]: core.double,
[_top]: core.double,
[_right]: core.double,
[_bottom]: core.double,
[_start]: core.double,
[_end]: core.double,
topLeft: ui.Offset,
topRight: ui.Offset,
bottomLeft: ui.Offset,
bottomRight: ui.Offset,
flipped: edge_insets.EdgeInsets
}));
dart.setLibraryUri(edge_insets.EdgeInsets, I[1]);
dart.setFieldSignature(edge_insets.EdgeInsets, () => ({
__proto__: dart.getFields(edge_insets.EdgeInsets.__proto__),
left: dart.finalFieldType(core.double),
top: dart.finalFieldType(core.double),
right: dart.finalFieldType(core.double),
bottom: dart.finalFieldType(core.double)
}));
dart.defineLazy(edge_insets.EdgeInsets, {
/*edge_insets.EdgeInsets.zero*/get zero() {
return C[3] || CT.C3;
}
}, false);
var start$ = dart.privateName(edge_insets, "EdgeInsetsDirectional.start");
var top$0 = dart.privateName(edge_insets, "EdgeInsetsDirectional.top");
var end$ = dart.privateName(edge_insets, "EdgeInsetsDirectional.end");
var bottom$0 = dart.privateName(edge_insets, "EdgeInsetsDirectional.bottom");
var _name$ = dart.privateName(ui, "_name");
edge_insets.EdgeInsetsDirectional = class EdgeInsetsDirectional extends edge_insets.EdgeInsetsGeometry {
get start() {
return this[start$];
}
set start(value) {
super.start = value;
}
get top() {
return this[top$0];
}
set top(value) {
super.top = value;
}
get end() {
return this[end$];
}
set end(value) {
super.end = value;
}
get bottom() {
return this[bottom$0];
}
set bottom(value) {
super.bottom = value;
}
get [_start]() {
return this.start;
}
get [_top]() {
return this.top;
}
get [_end]() {
return this.end;
}
get [_bottom]() {
return this.bottom;
}
get [_left]() {
return 0.0;
}
get [_right]() {
return 0.0;
}
get isNonNegative() {
return dart.notNull(this.start) >= 0.0 && dart.notNull(this.top) >= 0.0 && dart.notNull(this.end) >= 0.0 && dart.notNull(this.bottom) >= 0.0;
}
get flipped() {
return new edge_insets.EdgeInsetsDirectional.fromSTEB(this.end, this.bottom, this.start, this.top);
}
subtract(other) {
if (other == null) dart.nullFailed(I[0], 724, 50, "other");
if (edge_insets.EdgeInsetsDirectional.is(other)) return this['-'](other);
return super.subtract(other);
}
add(other) {
if (other == null) dart.nullFailed(I[0], 731, 45, "other");
if (edge_insets.EdgeInsetsDirectional.is(other)) return this['+'](other);
return super.add(other);
}
['-'](other) {
if (other == null) dart.nullFailed(I[0], 738, 58, "other");
return new edge_insets.EdgeInsetsDirectional.fromSTEB(dart.notNull(this.start) - dart.notNull(other.start), dart.notNull(this.top) - dart.notNull(other.top), dart.notNull(this.end) - dart.notNull(other.end), dart.notNull(this.bottom) - dart.notNull(other.bottom));
}
['+'](other) {
if (other == null) dart.nullFailed(I[0], 748, 58, "other");
return new edge_insets.EdgeInsetsDirectional.fromSTEB(dart.notNull(this.start) + dart.notNull(other.start), dart.notNull(this.top) + dart.notNull(other.top), dart.notNull(this.end) + dart.notNull(other.end), dart.notNull(this.bottom) + dart.notNull(other.bottom));
}
_negate() {
return new edge_insets.EdgeInsetsDirectional.fromSTEB(-dart.notNull(this.start), -dart.notNull(this.top), -dart.notNull(this.end), -dart.notNull(this.bottom));
}
['*'](other) {
if (other == null) dart.nullFailed(I[0], 772, 43, "other");
return new edge_insets.EdgeInsetsDirectional.fromSTEB(dart.notNull(this.start) * dart.notNull(other), dart.notNull(this.top) * dart.notNull(other), dart.notNull(this.end) * dart.notNull(other), dart.notNull(this.bottom) * dart.notNull(other));
}
['/'](other) {
if (other == null) dart.nullFailed(I[0], 783, 43, "other");
return new edge_insets.EdgeInsetsDirectional.fromSTEB(dart.notNull(this.start) / dart.notNull(other), dart.notNull(this.top) / dart.notNull(other), dart.notNull(this.end) / dart.notNull(other), dart.notNull(this.bottom) / dart.notNull(other));
}
['~/'](other) {
if (other == null) dart.nullFailed(I[0], 794, 44, "other");
return new edge_insets.EdgeInsetsDirectional.fromSTEB((dart.notNull(this.start) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this.top) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this.end) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this.bottom) / dart.notNull(other))[$truncate]()[$toDouble]());
}
['%'](other) {
if (other == null) dart.nullFailed(I[0], 805, 43, "other");
return new edge_insets.EdgeInsetsDirectional.fromSTEB(this.start[$modulo](other), this.top[$modulo](other), this.end[$modulo](other), this.bottom[$modulo](other));
}
static lerp(a, b, t) {
if (t == null) dart.nullFailed(I[0], 823, 97, "t");
if (!(t != null)) dart.assertFailed(null, I[0], 824, 12, "t != null");
if (a == null && b == null) return null;
if (a == null) return dart.nullCheck(b)['*'](t);
if (b == null) return a['*'](1.0 - dart.notNull(t));
return new edge_insets.EdgeInsetsDirectional.fromSTEB(dart.nullCheck(ui.lerpDouble(a.start, b.start, t)), dart.nullCheck(ui.lerpDouble(a.top, b.top, t)), dart.nullCheck(ui.lerpDouble(a.end, b.end, t)), dart.nullCheck(ui.lerpDouble(a.bottom, b.bottom, t)));
}
resolve(direction) {
if (!(direction != null)) dart.assertFailed(null, I[0], 841, 12, "direction != null");
switch (dart.nullCheck(direction)) {
case C[4] || CT.C4:
{
return new edge_insets.EdgeInsets.fromLTRB(this.end, this.top, this.start, this.bottom);
}
case C[5] || CT.C5:
{
return new edge_insets.EdgeInsets.fromLTRB(this.start, this.top, this.end, this.bottom);
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
}
};
(edge_insets.EdgeInsetsDirectional.fromSTEB = function(start, top, end, bottom) {
if (start == null) dart.nullFailed(I[0], 647, 45, "start");
if (top == null) dart.nullFailed(I[0], 647, 57, "top");
if (end == null) dart.nullFailed(I[0], 647, 67, "end");
if (bottom == null) dart.nullFailed(I[0], 647, 77, "bottom");
this[start$] = start;
this[top$0] = top;
this[end$] = end;
this[bottom$0] = bottom;
edge_insets.EdgeInsetsDirectional.__proto__.new.call(this);
;
}).prototype = edge_insets.EdgeInsetsDirectional.prototype;
(edge_insets.EdgeInsetsDirectional.only = function(opts) {
let start = opts && 'start' in opts ? opts.start : 0;
if (start == null) dart.nullFailed(I[0], 660, 10, "start");
let top = opts && 'top' in opts ? opts.top : 0;
if (top == null) dart.nullFailed(I[0], 661, 10, "top");
let end = opts && 'end' in opts ? opts.end : 0;
if (end == null) dart.nullFailed(I[0], 662, 10, "end");
let bottom = opts && 'bottom' in opts ? opts.bottom : 0;
if (bottom == null) dart.nullFailed(I[0], 663, 10, "bottom");
this[start$] = start;
this[top$0] = top;
this[end$] = end;
this[bottom$0] = bottom;
edge_insets.EdgeInsetsDirectional.__proto__.new.call(this);
;
}).prototype = edge_insets.EdgeInsetsDirectional.prototype;
dart.addTypeTests(edge_insets.EdgeInsetsDirectional);
dart.addTypeCaches(edge_insets.EdgeInsetsDirectional);
dart.setMethodSignature(edge_insets.EdgeInsetsDirectional, () => ({
__proto__: dart.getMethods(edge_insets.EdgeInsetsDirectional.__proto__),
'-': dart.fnType(edge_insets.EdgeInsetsDirectional, [edge_insets.EdgeInsetsDirectional]),
'+': dart.fnType(edge_insets.EdgeInsetsDirectional, [edge_insets.EdgeInsetsDirectional]),
_negate: dart.fnType(edge_insets.EdgeInsetsDirectional, []),
'*': dart.fnType(edge_insets.EdgeInsetsDirectional, [core.double]),
'/': dart.fnType(edge_insets.EdgeInsetsDirectional, [core.double]),
'~/': dart.fnType(edge_insets.EdgeInsetsDirectional, [core.double]),
'%': dart.fnType(edge_insets.EdgeInsetsDirectional, [core.double]),
resolve: dart.fnType(edge_insets.EdgeInsets, [dart.nullable(ui.TextDirection)])
}));
dart.setGetterSignature(edge_insets.EdgeInsetsDirectional, () => ({
__proto__: dart.getGetters(edge_insets.EdgeInsetsDirectional.__proto__),
[_start]: core.double,
[_top]: core.double,
[_end]: core.double,
[_bottom]: core.double,
[_left]: core.double,
[_right]: core.double,
flipped: edge_insets.EdgeInsetsDirectional
}));
dart.setLibraryUri(edge_insets.EdgeInsetsDirectional, I[1]);
dart.setFieldSignature(edge_insets.EdgeInsetsDirectional, () => ({
__proto__: dart.getFields(edge_insets.EdgeInsetsDirectional.__proto__),
start: dart.finalFieldType(core.double),
top: dart.finalFieldType(core.double),
end: dart.finalFieldType(core.double),
bottom: dart.finalFieldType(core.double)
}));
dart.defineLazy(edge_insets.EdgeInsetsDirectional, {
/*edge_insets.EdgeInsetsDirectional.zero*/get zero() {
return C[6] || CT.C6;
}
}, false);
const _left$ = _MixedEdgeInsets__left;
const _right$ = _MixedEdgeInsets__right;
const _start$ = _MixedEdgeInsets__start;
const _end$ = _MixedEdgeInsets__end;
const _top$ = _MixedEdgeInsets__top;
const _bottom$ = _MixedEdgeInsets__bottom;
edge_insets._MixedEdgeInsets = class _MixedEdgeInsets extends edge_insets.EdgeInsetsGeometry {
get [_left]() {
return this[_left$];
}
set [_left](value) {
super[_left] = value;
}
get [_right]() {
return this[_right$];
}
set [_right](value) {
super[_right] = value;
}
get [_start]() {
return this[_start$];
}
set [_start](value) {
super[_start] = value;
}
get [_end]() {
return this[_end$];
}
set [_end](value) {
super[_end] = value;
}
get [_top]() {
return this[_top$];
}
set [_top](value) {
super[_top] = value;
}
get [_bottom]() {
return this[_bottom$];
}
set [_bottom](value) {
super[_bottom] = value;
}
get isNonNegative() {
return dart.notNull(this[_left]) >= 0.0 && dart.notNull(this[_right]) >= 0.0 && dart.notNull(this[_start]) >= 0.0 && dart.notNull(this[_end]) >= 0.0 && dart.notNull(this[_top]) >= 0.0 && dart.notNull(this[_bottom]) >= 0.0;
}
_negate() {
return new edge_insets._MixedEdgeInsets.fromLRSETB(-dart.notNull(this[_left]), -dart.notNull(this[_right]), -dart.notNull(this[_start]), -dart.notNull(this[_end]), -dart.notNull(this[_top]), -dart.notNull(this[_bottom]));
}
['*'](other) {
if (other == null) dart.nullFailed(I[0], 895, 38, "other");
return new edge_insets._MixedEdgeInsets.fromLRSETB(dart.notNull(this[_left]) * dart.notNull(other), dart.notNull(this[_right]) * dart.notNull(other), dart.notNull(this[_start]) * dart.notNull(other), dart.notNull(this[_end]) * dart.notNull(other), dart.notNull(this[_top]) * dart.notNull(other), dart.notNull(this[_bottom]) * dart.notNull(other));
}
['/'](other) {
if (other == null) dart.nullFailed(I[0], 907, 38, "other");
return new edge_insets._MixedEdgeInsets.fromLRSETB(dart.notNull(this[_left]) / dart.notNull(other), dart.notNull(this[_right]) / dart.notNull(other), dart.notNull(this[_start]) / dart.notNull(other), dart.notNull(this[_end]) / dart.notNull(other), dart.notNull(this[_top]) / dart.notNull(other), dart.notNull(this[_bottom]) / dart.notNull(other));
}
['~/'](other) {
if (other == null) dart.nullFailed(I[0], 919, 39, "other");
return new edge_insets._MixedEdgeInsets.fromLRSETB((dart.notNull(this[_left]) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this[_right]) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this[_start]) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this[_end]) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this[_top]) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this[_bottom]) / dart.notNull(other))[$truncate]()[$toDouble]());
}
['%'](other) {
if (other == null) dart.nullFailed(I[0], 931, 38, "other");
return new edge_insets._MixedEdgeInsets.fromLRSETB(this[_left][$modulo](other), this[_right][$modulo](other), this[_start][$modulo](other), this[_end][$modulo](other), this[_top][$modulo](other), this[_bottom][$modulo](other));
}
resolve(direction) {
if (!(direction != null)) dart.assertFailed(null, I[0], 944, 12, "direction != null");
switch (dart.nullCheck(direction)) {
case C[4] || CT.C4:
{
return new edge_insets.EdgeInsets.fromLTRB(dart.notNull(this[_end]) + dart.notNull(this[_left]), this[_top], dart.notNull(this[_start]) + dart.notNull(this[_right]), this[_bottom]);
}
case C[5] || CT.C5:
{
return new edge_insets.EdgeInsets.fromLTRB(dart.notNull(this[_start]) + dart.notNull(this[_left]), this[_top], dart.notNull(this[_end]) + dart.notNull(this[_right]), this[_bottom]);
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
}
};
(edge_insets._MixedEdgeInsets.fromLRSETB = function(_left, _right, _start, _end, _top, _bottom) {
if (_left == null) dart.nullFailed(I[0], 852, 42, "_left");
if (_right == null) dart.nullFailed(I[0], 852, 54, "_right");
if (_start == null) dart.nullFailed(I[0], 852, 67, "_start");
if (_end == null) dart.nullFailed(I[0], 852, 80, "_end");
if (_top == null) dart.nullFailed(I[0], 852, 91, "_top");
if (_bottom == null) dart.nullFailed(I[0], 852, 102, "_bottom");
this[_left$] = _left;
this[_right$] = _right;
this[_start$] = _start;
this[_end$] = _end;
this[_top$] = _top;
this[_bottom$] = _bottom;
edge_insets._MixedEdgeInsets.__proto__.new.call(this);
;
}).prototype = edge_insets._MixedEdgeInsets.prototype;
dart.addTypeTests(edge_insets._MixedEdgeInsets);
dart.addTypeCaches(edge_insets._MixedEdgeInsets);
dart.setMethodSignature(edge_insets._MixedEdgeInsets, () => ({
__proto__: dart.getMethods(edge_insets._MixedEdgeInsets.__proto__),
_negate: dart.fnType(edge_insets._MixedEdgeInsets, []),
'*': dart.fnType(edge_insets._MixedEdgeInsets, [core.double]),
'/': dart.fnType(edge_insets._MixedEdgeInsets, [core.double]),
'~/': dart.fnType(edge_insets._MixedEdgeInsets, [core.double]),
'%': dart.fnType(edge_insets._MixedEdgeInsets, [core.double]),
resolve: dart.fnType(edge_insets.EdgeInsets, [dart.nullable(ui.TextDirection)])
}));
dart.setLibraryUri(edge_insets._MixedEdgeInsets, I[1]);
dart.setFieldSignature(edge_insets._MixedEdgeInsets, () => ({
__proto__: dart.getFields(edge_insets._MixedEdgeInsets.__proto__),
[_left]: dart.finalFieldType(core.double),
[_right]: dart.finalFieldType(core.double),
[_start]: dart.finalFieldType(core.double),
[_end]: dart.finalFieldType(core.double),
[_top]: dart.finalFieldType(core.double),
[_bottom]: dart.finalFieldType(core.double)
}));
dart.trackLibraries("packages/flutter/src/painting/edge_insets.dart", {
"package:flutter/src/painting/edge_insets.dart": edge_insets
}, {
}, '{"version":3,"sourceRoot":"","sources":["edge_insets.dart"],"names":[],"mappings":"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","file":"../../../../../../../../../../../packages/flutter/src/painting/edge_insets.dart.lib.js"}');
// Exports:
return {
src__painting__edge_insets: edge_insets
};
}));
//# sourceMappingURL=edge_insets.dart.lib.js.map
define(['dart_sdk', 'packages/flutter/src/widgets/widget_span.dart', 'packages/flutter/src/rendering/flex.dart', 'packages/flutter/src/material/text_field.dart', 'packages/flutter/src/material/icon_button.dart', 'packages/flutter/src/material/input_border.dart', 'packages/flutter/src/painting/border_radius.dart', 'packages/flutter/src/painting/borders.dart', 'packages/flutter/src/material/colors.dart', 'packages/flutter/src/painting/edge_insets.dart', 'packages/flutter/src/painting/strut_style.dart', 'packages/flutter/src/widgets/icon.dart', 'packages/flutter/src/material/icons.dart'], (function load__packages__dashboard__ui__sign_in__login_form_dart(dart_sdk, packages__flutter__src__widgets__widget_span$46dart, packages__flutter__src__rendering__flex$46dart, packages__flutter__src__material__text_field$46dart, packages__flutter__src__material__icon_button$46dart, packages__flutter__src__material__input_border$46dart, packages__flutter__src__painting__border_radius$46dart, packages__flutter__src__painting__borders$46dart, packages__flutter__src__material__colors$46dart, packages__flutter__src__painting__edge_insets$46dart, packages__flutter__src__painting__strut_style$46dart, packages__flutter__src__widgets__icon$46dart, packages__flutter__src__material__icons$46dart) {
'use strict';
const core = dart_sdk.core;
const _interceptors = dart_sdk._interceptors;
const dart = dart_sdk.dart;
const dartx = dart_sdk.dartx;
const framework = packages__flutter__src__widgets__widget_span$46dart.src__widgets__framework;
const focus_traversal = packages__flutter__src__widgets__widget_span$46dart.src__widgets__focus_traversal;
const basic = packages__flutter__src__widgets__widget_span$46dart.src__widgets__basic;
const image = packages__flutter__src__widgets__widget_span$46dart.src__widgets__image;
const widget_inspector = packages__flutter__src__widgets__widget_span$46dart.src__widgets__widget_inspector;
const text = packages__flutter__src__widgets__widget_span$46dart.src__widgets__text;
const flex = packages__flutter__src__rendering__flex$46dart.src__rendering__flex;
const text_field = packages__flutter__src__material__text_field$46dart.src__material__text_field;
const input_decorator = packages__flutter__src__material__icon_button$46dart.src__material__input_decorator;
const text_button = packages__flutter__src__material__icon_button$46dart.src__material__text_button;
const theme = packages__flutter__src__material__icon_button$46dart.src__material__theme;
const input_border = packages__flutter__src__material__input_border$46dart.src__material__input_border;
const border_radius = packages__flutter__src__painting__border_radius$46dart.src__painting__border_radius;
const borders = packages__flutter__src__painting__borders$46dart.src__painting__borders;
const colors = packages__flutter__src__material__colors$46dart.src__material__colors;
const edge_insets = packages__flutter__src__painting__edge_insets$46dart.src__painting__edge_insets;
const text_style = packages__flutter__src__painting__strut_style$46dart.src__painting__text_style;
const icon = packages__flutter__src__widgets__icon$46dart.src__widgets__icon;
const icons = packages__flutter__src__material__icons$46dart.src__material__icons;
var login_form = Object.create(dart.library);
var $isNotEmpty = dartx.isNotEmpty;
var $add = dartx.add;
dart._checkModuleNullSafetyMode(false);
var T = {
_LocationL: () => (T._LocationL = dart.constFn(dart.legacy(widget_inspector._Location)))(),
StringL: () => (T.StringL = dart.constFn(dart.legacy(core.String)))(),
StringLToStringL: () => (T.StringLToStringL = dart.constFn(dart.fnType(T.StringL(), [T.StringL()])))(),
WidgetL: () => (T.WidgetL = dart.constFn(dart.legacy(framework.Widget)))(),
JSArrayOfWidgetL: () => (T.JSArrayOfWidgetL = dart.constFn(_interceptors.JSArray$(T.WidgetL())))()
};
var T$Eval = Object.assign({
_: () => T$Eval
}, T);
var S = {
_: () => S
};
var S$Eval = Object.assign({
_: () => S$Eval
}, S);
const CT = Object.create({
_: () => (C, CT)
});
dart.defineLazy(CT, {
get C2() {
return C[2] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "name",
[_Location_column]: 15,
[_Location_line]: 33,
[_Location_file]: null
});
},
get C1() {
return C[1] = dart.constList([C[2] || CT.C2], T._LocationL());
},
get C0() {
return C[0] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[1] || CT.C1,
[_Location_name]: null,
[_Location_column]: 19,
[_Location_line]: 32,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/sign_in/login_form.dart"
});
},
get C5() {
return C[5] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "height",
[_Location_column]: 22,
[_Location_line]: 35,
[_Location_file]: null
});
},
get C4() {
return C[4] = dart.constList([C[5] || CT.C5], T._LocationL());
},
get C3() {
return C[3] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[4] || CT.C4,
[_Location_name]: null,
[_Location_column]: 13,
[_Location_line]: 35,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/sign_in/login_form.dart"
});
},
get C8() {
return C[8] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "readOnly",
[_Location_column]: 15,
[_Location_line]: 37,
[_Location_file]: null
});
},
get C9() {
return C[9] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "autofocus",
[_Location_column]: 15,
[_Location_line]: 38,
[_Location_file]: null
});
},
get C10() {
return C[10] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "decoration",
[_Location_column]: 15,
[_Location_line]: 39,
[_Location_file]: null
});
},
get C11() {
return C[11] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "onChanged",
[_Location_column]: 15,
[_Location_line]: 50,
[_Location_file]: null
});
},
get C12() {
return C[12] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "minLines",
[_Location_column]: 15,
[_Location_line]: 51,
[_Location_file]: null
});
},
get C13() {
return C[13] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "maxLines",
[_Location_column]: 15,
[_Location_line]: 52,
[_Location_file]: null
});
},
get C14() {
return C[14] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "maxLength",
[_Location_column]: 15,
[_Location_line]: 53,
[_Location_file]: null
});
},
get C7() {
return C[7] = dart.constList([C[8] || CT.C8, C[9] || CT.C9, C[10] || CT.C10, C[11] || CT.C11, C[12] || CT.C12, C[13] || CT.C13, C[14] || CT.C14], T._LocationL());
},
get C6() {
return C[6] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[7] || CT.C7,
[_Location_name]: null,
[_Location_column]: 13,
[_Location_line]: 36,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/sign_in/login_form.dart"
});
},
get C17() {
return C[17] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "height",
[_Location_column]: 22,
[_Location_line]: 55,
[_Location_file]: null
});
},
get C16() {
return C[16] = dart.constList([C[17] || CT.C17], T._LocationL());
},
get C15() {
return C[15] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[16] || CT.C16,
[_Location_name]: null,
[_Location_column]: 13,
[_Location_line]: 55,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/sign_in/login_form.dart"
});
},
get C20() {
return C[20] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "readOnly",
[_Location_column]: 15,
[_Location_line]: 57,
[_Location_file]: null
});
},
get C21() {
return C[21] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "autofocus",
[_Location_column]: 15,
[_Location_line]: 58,
[_Location_file]: null
});
},
get C22() {
return C[22] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "obscureText",
[_Location_column]: 15,
[_Location_line]: 59,
[_Location_file]: null
});
},
get C23() {
return C[23] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "decoration",
[_Location_column]: 15,
[_Location_line]: 60,
[_Location_file]: null
});
},
get C24() {
return C[24] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "onChanged",
[_Location_column]: 15,
[_Location_line]: 71,
[_Location_file]: null
});
},
get C25() {
return C[25] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "minLines",
[_Location_column]: 15,
[_Location_line]: 72,
[_Location_file]: null
});
},
get C26() {
return C[26] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "maxLines",
[_Location_column]: 15,
[_Location_line]: 73,
[_Location_file]: null
});
},
get C27() {
return C[27] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "maxLength",
[_Location_column]: 15,
[_Location_line]: 74,
[_Location_file]: null
});
},
get C19() {
return C[19] = dart.constList([C[20] || CT.C20, C[21] || CT.C21, C[22] || CT.C22, C[23] || CT.C23, C[24] || CT.C24, C[25] || CT.C25, C[26] || CT.C26, C[27] || CT.C27], T._LocationL());
},
get C18() {
return C[18] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[19] || CT.C19,
[_Location_name]: null,
[_Location_column]: 13,
[_Location_line]: 56,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/sign_in/login_form.dart"
});
},
get C28() {
return C[28] = dart.const({
__proto__: edge_insets.EdgeInsets.prototype,
[EdgeInsets_bottom]: 16,
[EdgeInsets_right]: 0,
[EdgeInsets_top]: 0,
[EdgeInsets_left]: 0
});
},
get C31() {
return C[31] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "data",
[_Location_column]: 26,
[_Location_line]: 81,
[_Location_file]: null
});
},
get C32() {
return C[32] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "style",
[_Location_column]: 19,
[_Location_line]: 82,
[_Location_file]: null
});
},
get C30() {
return C[30] = dart.constList([C[31] || CT.C31, C[32] || CT.C32], T._LocationL());
},
get C29() {
return C[29] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[30] || CT.C30,
[_Location_name]: null,
[_Location_column]: 24,
[_Location_line]: 80,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/sign_in/login_form.dart"
});
},
get C35() {
return C[35] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "padding",
[_Location_column]: 17,
[_Location_line]: 79,
[_Location_file]: null
});
},
get C36() {
return C[36] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 17,
[_Location_line]: 80,
[_Location_file]: null
});
},
get C34() {
return C[34] = dart.constList([C[35] || CT.C35, C[36] || CT.C36], T._LocationL());
},
get C33() {
return C[33] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[34] || CT.C34,
[_Location_name]: null,
[_Location_column]: 15,
[_Location_line]: 78,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/sign_in/login_form.dart"
});
},
get C39() {
return C[39] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "height",
[_Location_column]: 22,
[_Location_line]: 86,
[_Location_file]: null
});
},
get C38() {
return C[38] = dart.constList([C[39] || CT.C39], T._LocationL());
},
get C37() {
return C[37] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[38] || CT.C38,
[_Location_name]: null,
[_Location_column]: 13,
[_Location_line]: 86,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/sign_in/login_form.dart"
});
},
get C42() {
return C[42] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "icon",
[_Location_column]: 23,
[_Location_line]: 90,
[_Location_file]: null
});
},
get C43() {
return C[43] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "size",
[_Location_column]: 17,
[_Location_line]: 91,
[_Location_file]: null
});
},
get C44() {
return C[44] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "color",
[_Location_column]: 17,
[_Location_line]: 92,
[_Location_file]: null
});
},
get C41() {
return C[41] = dart.constList([C[42] || CT.C42, C[43] || CT.C43, C[44] || CT.C44], T._LocationL());
},
get C40() {
return C[40] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[41] || CT.C41,
[_Location_name]: null,
[_Location_column]: 21,
[_Location_line]: 89,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/sign_in/login_form.dart"
});
},
get C47() {
return C[47] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "data",
[_Location_column]: 17,
[_Location_line]: 95,
[_Location_file]: null
});
},
get C48() {
return C[48] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "style",
[_Location_column]: 17,
[_Location_line]: 96,
[_Location_file]: null
});
},
get C46() {
return C[46] = dart.constList([C[47] || CT.C47, C[48] || CT.C48], T._LocationL());
},
get C45() {
return C[45] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[46] || CT.C46,
[_Location_name]: null,
[_Location_column]: 22,
[_Location_line]: 94,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/sign_in/login_form.dart"
});
},
get C51() {
return C[51] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "onPressed",
[_Location_column]: 15,
[_Location_line]: 88,
[_Location_file]: null
});
},
get C52() {
return C[52] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "icon",
[_Location_column]: 15,
[_Location_line]: 89,
[_Location_file]: null
});
},
get C53() {
return C[53] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "label",
[_Location_column]: 15,
[_Location_line]: 94,
[_Location_file]: null
});
},
get C54() {
return C[54] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "style",
[_Location_column]: 15,
[_Location_line]: 98,
[_Location_file]: null
});
},
get C50() {
return C[50] = dart.constList([C[51] || CT.C51, C[52] || CT.C52, C[53] || CT.C53, C[54] || CT.C54], T._LocationL());
},
get C49() {
return C[49] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[50] || CT.C50,
[_Location_name]: null,
[_Location_column]: 24,
[_Location_line]: 87,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/sign_in/login_form.dart"
});
},
get C57() {
return C[57] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "mainAxisSize",
[_Location_column]: 11,
[_Location_line]: 29,
[_Location_file]: null
});
},
get C58() {
return C[58] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "crossAxisAlignment",
[_Location_column]: 11,
[_Location_line]: 30,
[_Location_file]: null
});
},
get C59() {
return C[59] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "children",
[_Location_column]: 11,
[_Location_line]: 31,
[_Location_file]: null
});
},
get C56() {
return C[56] = dart.constList([C[57] || CT.C57, C[58] || CT.C58, C[59] || CT.C59], T._LocationL());
},
get C55() {
return C[55] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[56] || CT.C56,
[_Location_name]: null,
[_Location_column]: 16,
[_Location_line]: 28,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/sign_in/login_form.dart"
});
},
get C62() {
return C[62] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "widthFactor",
[_Location_column]: 9,
[_Location_line]: 27,
[_Location_file]: null
});
},
get C63() {
return C[63] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 9,
[_Location_line]: 28,
[_Location_file]: null
});
},
get C61() {
return C[61] = dart.constList([C[62] || CT.C62, C[63] || CT.C63], T._LocationL());
},
get C60() {
return C[60] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[61] || CT.C61,
[_Location_name]: null,
[_Location_column]: 14,
[_Location_line]: 26,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/sign_in/login_form.dart"
});
},
get C66() {
return C[66] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "policy",
[_Location_column]: 7,
[_Location_line]: 25,
[_Location_file]: null
});
},
get C67() {
return C[67] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 7,
[_Location_line]: 26,
[_Location_file]: null
});
},
get C65() {
return C[65] = dart.constList([C[66] || CT.C66, C[67] || CT.C67], T._LocationL());
},
get C64() {
return C[64] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[65] || CT.C65,
[_Location_name]: null,
[_Location_column]: 12,
[_Location_line]: 24,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/sign_in/login_form.dart"
});
}
}, false);
var C = Array(68).fill(void 0);
var I = ["package:dashboard/ui/sign_in/login_form.dart"];
var loginAttempt$ = dart.privateName(login_form, "LoginForm.loginAttempt");
var error$ = dart.privateName(login_form, "LoginForm.error");
var isBusy$ = dart.privateName(login_form, "LoginForm.isBusy");
login_form.LoginForm = class LoginForm extends framework.StatefulWidget {
get loginAttempt() {
return this[loginAttempt$];
}
set loginAttempt(value) {
super.loginAttempt = value;
}
get error() {
return this[error$];
}
set error(value) {
super.error = value;
}
get isBusy() {
return this[isBusy$];
}
set isBusy(value) {
super.isBusy = value;
}
createState() {
return new login_form._LoginFormState.new();
}
};
(login_form.LoginForm.new = function(loginAttempt, error, isBusy, opts) {
let $36creationLocationd_0dea112b090073317d4 = opts && '$creationLocationd_0dea112b090073317d4' in opts ? opts.$creationLocationd_0dea112b090073317d4 : null;
this[loginAttempt$] = loginAttempt;
this[error$] = error;
this[isBusy$] = isBusy;
login_form.LoginForm.__proto__.new.call(this, {$creationLocationd_0dea112b090073317d4: $36creationLocationd_0dea112b090073317d4});
;
}).prototype = login_form.LoginForm.prototype;
dart.addTypeTests(login_form.LoginForm);
dart.addTypeCaches(login_form.LoginForm);
dart.setMethodSignature(login_form.LoginForm, () => ({
__proto__: dart.getMethods(login_form.LoginForm.__proto__),
createState: dart.fnType(dart.legacy(login_form._LoginFormState), [])
}));
dart.setLibraryUri(login_form.LoginForm, I[0]);
dart.setFieldSignature(login_form.LoginForm, () => ({
__proto__: dart.getFields(login_form.LoginForm.__proto__),
loginAttempt: dart.finalFieldType(dart.legacy(dart.fnType(dart.dynamic, [dart.legacy(core.String), dart.legacy(core.String)]))),
error: dart.finalFieldType(dart.legacy(core.String)),
isBusy: dart.finalFieldType(dart.legacy(core.bool))
}));
var _username = dart.privateName(login_form, "_username");
var _password = dart.privateName(login_form, "_password");
var _submit = dart.privateName(login_form, "_submit");
var _Location_parameterLocations = dart.privateName(widget_inspector, "_Location.parameterLocations");
var _Location_name = dart.privateName(widget_inspector, "_Location.name");
var _Location_column = dart.privateName(widget_inspector, "_Location.column");
var _Location_line = dart.privateName(widget_inspector, "_Location.line");
var _Location_file = dart.privateName(widget_inspector, "_Location.file");
var EdgeInsets_bottom = dart.privateName(edge_insets, "EdgeInsets.bottom");
var EdgeInsets_right = dart.privateName(edge_insets, "EdgeInsets.right");
var EdgeInsets_top = dart.privateName(edge_insets, "EdgeInsets.top");
var EdgeInsets_left = dart.privateName(edge_insets, "EdgeInsets.left");
login_form._LoginFormState = class _LoginFormState extends framework.State$(dart.legacy(login_form.LoginForm)) {
[_submit]() {
let t2, t1, t0;
if (!dart.test(this.widget.isBusy)) {
t0 = this.widget;
t1 = this[_username];
t2 = this[_password];
t0.loginAttempt(t1, t2);
}
}
build(context) {
return new focus_traversal.FocusTraversalGroup.new({policy: new focus_traversal.OrderedTraversalPolicy.new(), child: new basic.FractionallySizedBox.new({widthFactor: 0.6, child: new basic.Column.new({mainAxisSize: flex.MainAxisSize.min, crossAxisAlignment: flex.CrossAxisAlignment.center, children: (() => {
let t0 = T.JSArrayOfWidgetL().of([new image.Image.asset("assets/articonf-logo.png", {$creationLocationd_0dea112b090073317d4: C[0] || CT.C0}), new basic.SizedBox.new({height: 32.0, $creationLocationd_0dea112b090073317d4: C[3] || CT.C3}), new text_field.TextField.new({readOnly: this.widget.isBusy, autofocus: true, decoration: new input_decorator.InputDecoration.new({hintText: "Username", counterText: "", border: new input_border.OutlineInputBorder.new({borderRadius: new border_radius.BorderRadius.circular(5.0), borderSide: new borders.BorderSide.new({color: colors.Colors.blue, style: borders.BorderStyle.solid})})}), onChanged: dart.fn(content => this[_username] = content, T.StringLToStringL()), minLines: 1, maxLines: 1, maxLength: 50, $creationLocationd_0dea112b090073317d4: C[6] || CT.C6}), new basic.SizedBox.new({height: 16.0, $creationLocationd_0dea112b090073317d4: C[15] || CT.C15}), new text_field.TextField.new({readOnly: this.widget.isBusy, autofocus: false, obscureText: true, decoration: new input_decorator.InputDecoration.new({hintText: "Password", counterText: "", border: new input_border.OutlineInputBorder.new({borderRadius: new border_radius.BorderRadius.circular(5.0), borderSide: new borders.BorderSide.new({color: colors.Colors.blue, style: borders.BorderStyle.solid})})}), onChanged: dart.fn(content => this[_password] = content, T.StringLToStringL()), minLines: 1, maxLines: 1, maxLength: 50, $creationLocationd_0dea112b090073317d4: C[18] || CT.C18})]);
if (this.widget.error != null && this.widget.error[$isNotEmpty]) t0[$add](new basic.Padding.new({padding: C[28] || CT.C28, child: new text.Text.new(this.widget.error, {style: new text_style.TextStyle.new({color: colors.Colors.red}), $creationLocationd_0dea112b090073317d4: C[29] || CT.C29}), $creationLocationd_0dea112b090073317d4: C[33] || CT.C33}));
t0[$add](new basic.SizedBox.new({height: 16.0, $creationLocationd_0dea112b090073317d4: C[37] || CT.C37}));
t0[$add](new text_button._TextButtonWithIcon.new({onPressed: dart.bind(this, _submit), icon: new icon.Icon.new(icons.Icons.login, {size: 32.0, color: colors.Colors.white, $creationLocationd_0dea112b090073317d4: C[40] || CT.C40}), label: new text.Text.new("Sign In", {style: new text_style.TextStyle.new({fontSize: 20.0, color: colors.Colors.white}), $creationLocationd_0dea112b090073317d4: C[45] || CT.C45}), style: text_button.TextButton.styleFrom({backgroundColor: dart.test(this.widget.isBusy) ? colors.Colors.grey : theme.Theme.of(context).primaryColor, padding: new edge_insets.EdgeInsets.all(18.0)}), $creationLocationd_0dea112b090073317d4: C[49] || CT.C49}));
return t0;
})(), $creationLocationd_0dea112b090073317d4: C[55] || CT.C55}), $creationLocationd_0dea112b090073317d4: C[60] || CT.C60}), $creationLocationd_0dea112b090073317d4: C[64] || CT.C64});
}
};
(login_form._LoginFormState.new = function() {
this[_username] = "";
this[_password] = "";
login_form._LoginFormState.__proto__.new.call(this);
;
}).prototype = login_form._LoginFormState.prototype;
dart.addTypeTests(login_form._LoginFormState);
dart.addTypeCaches(login_form._LoginFormState);
dart.setMethodSignature(login_form._LoginFormState, () => ({
__proto__: dart.getMethods(login_form._LoginFormState.__proto__),
[_submit]: dart.fnType(dart.void, []),
build: dart.fnType(dart.legacy(framework.Widget), [dart.legacy(framework.BuildContext)])
}));
dart.setLibraryUri(login_form._LoginFormState, I[0]);
dart.setFieldSignature(login_form._LoginFormState, () => ({
__proto__: dart.getFields(login_form._LoginFormState.__proto__),
[_username]: dart.fieldType(dart.legacy(core.String)),
[_password]: dart.fieldType(dart.legacy(core.String))
}));
dart.trackLibraries("packages/dashboard/ui/sign_in/login_form.dart", {
"package:dashboard/ui/sign_in/login_form.dart": login_form
}, {
}, '{"version":3,"sourceRoot":"","sources":["login_form.dart"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAMiC;;;;;;IAClB;;;;;;IACF;;;;;;;AAJsB;IAAiB;;uCAMnC,cAAmB,OAAY;;IAA/B;IAAmB;IAAY;AAA9C;;EAAqD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQnD,qBAAK,AAAO,qBAAiD;aAAzC;aAAoB;aAAW;QAAZ;;IACzC;UAG0B;AACxB,YAAO,sDACG,yDACD,iDACQ,YACN,oCACsB,2CACY,0CAC7B;gDACF,sBACJ,sFAEF,gCAAiB,+DACjB,wCACY,AAAO,+BACN,kBACC,mDACA,yBACG,YACL,uDACqB,wCAAS,kBACxB,mCACI,2BACK,4CAId,QAAC,WAAY,kBAAY,OAAO,mCACjC,aACA,cACC,6DAEb,gCAAiB,iEACjB,wCACY,AAAO,+BACN,oBACE,kBACD,mDACA,yBACG,YACL,uDACqB,wCAAS,kBACxB,mCACI,2BACK,4CAId,QAAC,WAAY,kBAAY,OAAO,mCACjC,aACA,cACC;AAGb,kBAAI,AAAO,AAAM,6BAAW,AAAO,AAAM,gCACvC,iEAES,kBACL,AAAO,2BACA,qCAAwB;AAIrC,uDAAiB;AACN,qFACE,sBACL,kBACE,0BACA,aACQ,uFAET,kBACL,mBACO,wCAAoB,aAAkB,yFAE7B,6DACC,AAAO,sBACX,qBACD,AAAY,eAAT,OAAO,yBACF,+BAAI;;;IAOtC;;;IA9FO,kBAAY;IACZ,kBAAY;;;EA8FrB","file":"../../../../../../../../../../packages/dashboard/ui/sign_in/login_form.dart.lib.js"}');
// Exports:
return {
ui__sign_in__login_form: login_form
};
}));
//# sourceMappingURL=login_form.dart.lib.js.map
define(['dart_sdk', 'packages/flutter/src/painting/colors.dart'], (function load__packages__flutter__src__material__colors_dart(dart_sdk, packages__flutter__src__painting__colors$46dart) {
'use strict';
const core = dart_sdk.core;
const ui = dart_sdk.ui;
const dart = dart_sdk.dart;
const dartx = dart_sdk.dartx;
const colors = packages__flutter__src__painting__colors$46dart.src__painting__colors;
var colors$ = Object.create(dart.library);
dart._checkModuleNullSafetyMode(false);
var T = {
intL: () => (T.intL = dart.constFn(dart.legacy(core.int)))(),
ColorL: () => (T.ColorL = dart.constFn(dart.legacy(ui.Color)))(),
MaterialColorL: () => (T.MaterialColorL = dart.constFn(dart.legacy(colors$.MaterialColor)))(),
MaterialAccentColorL: () => (T.MaterialAccentColorL = dart.constFn(dart.legacy(colors$.MaterialAccentColor)))()
};
var T$Eval = Object.assign({
_: () => T$Eval
}, T);
var S = {
_: () => S
};
var S$Eval = Object.assign({
_: () => S$Eval
}, S);
const CT = Object.create({
_: () => (C, CT)
});
dart.defineLazy(CT, {
get C0() {
return C[0] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 0
});
},
get C1() {
return C[1] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278190080.0
});
},
get C2() {
return C[2] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 3707764736.0
});
},
get C3() {
return C[3] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 2315255808.0
});
},
get C4() {
return C[4] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 1929379840
});
},
get C5() {
return C[5] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 1627389952
});
},
get C6() {
return C[6] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 1107296256
});
},
get C7() {
return C[7] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 520093696
});
},
get C8() {
return C[8] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294967295.0
});
},
get C9() {
return C[9] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 3019898879.0
});
},
get C10() {
return C[10] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 2583691263.0
});
},
get C11() {
return C[11] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 2332033023.0
});
},
get C12() {
return C[12] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 1660944383
});
},
get C13() {
return C[13] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 1308622847
});
},
get C14() {
return C[14] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 1040187391
});
},
get C15() {
return C[15] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 536870911
});
},
get C16() {
return C[16] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 452984831
});
},
get C19() {
return C[19] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294962158.0
});
},
get C20() {
return C[20] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294954450.0
});
},
get C21() {
return C[21] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293892762.0
});
},
get C22() {
return C[22] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293227379.0
});
},
get C23() {
return C[23] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293874512.0
});
},
get C24() {
return C[24] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294198070.0
});
},
get C25() {
return C[25] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293212469.0
});
},
get C26() {
return C[26] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292030255.0
});
},
get C27() {
return C[27] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4291176488.0
});
},
get C28() {
return C[28] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4290190364.0
});
},
get C18() {
return C[18] = dart.constMap(T.intL(), T.ColorL(), [50, C[19] || CT.C19, 100, C[20] || CT.C20, 200, C[21] || CT.C21, 300, C[22] || CT.C22, 400, C[23] || CT.C23, 500, C[24] || CT.C24, 600, C[25] || CT.C25, 700, C[26] || CT.C26, 800, C[27] || CT.C27, 900, C[28] || CT.C28]);
},
get C17() {
return C[17] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4294198070.0,
[ColorSwatch__swatch]: C[18] || CT.C18
});
},
get C31() {
return C[31] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294937216.0
});
},
get C32() {
return C[32] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294922834.0
});
},
get C33() {
return C[33] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294907716.0
});
},
get C34() {
return C[34] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292149248.0
});
},
get C30() {
return C[30] = dart.constMap(T.intL(), T.ColorL(), [100, C[31] || CT.C31, 200, C[32] || CT.C32, 400, C[33] || CT.C33, 700, C[34] || CT.C34]);
},
get C29() {
return C[29] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4294922834.0,
[ColorSwatch__swatch]: C[30] || CT.C30
});
},
get C37() {
return C[37] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294763756.0
});
},
get C38() {
return C[38] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294491088.0
});
},
get C39() {
return C[39] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294217649.0
});
},
get C40() {
return C[40] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293943954.0
});
},
get C41() {
return C[41] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293673082.0
});
},
get C42() {
return C[42] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293467747.0
});
},
get C43() {
return C[43] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292352864.0
});
},
get C44() {
return C[44] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4290910299.0
});
},
get C45() {
return C[45] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289533015.0
});
},
get C46() {
return C[46] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4287106639.0
});
},
get C36() {
return C[36] = dart.constMap(T.intL(), T.ColorL(), [50, C[37] || CT.C37, 100, C[38] || CT.C38, 200, C[39] || CT.C39, 300, C[40] || CT.C40, 400, C[41] || CT.C41, 500, C[42] || CT.C42, 600, C[43] || CT.C43, 700, C[44] || CT.C44, 800, C[45] || CT.C45, 900, C[46] || CT.C46]);
},
get C35() {
return C[35] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4293467747.0,
[ColorSwatch__swatch]: C[36] || CT.C36
});
},
get C49() {
return C[49] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294934699.0
});
},
get C50() {
return C[50] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294918273.0
});
},
get C51() {
return C[51] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294246487.0
});
},
get C52() {
return C[52] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4291105122.0
});
},
get C48() {
return C[48] = dart.constMap(T.intL(), T.ColorL(), [100, C[49] || CT.C49, 200, C[50] || CT.C50, 400, C[51] || CT.C51, 700, C[52] || CT.C52]);
},
get C47() {
return C[47] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4294918273.0,
[ColorSwatch__swatch]: C[48] || CT.C48
});
},
get C55() {
return C[55] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294174197.0
});
},
get C56() {
return C[56] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292984551.0
});
},
get C57() {
return C[57] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4291728344.0
});
},
get C58() {
return C[58] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4290406600.0
});
},
get C59() {
return C[59] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289415100.0
});
},
get C60() {
return C[60] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4288423856.0
});
},
get C61() {
return C[61] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4287505578.0
});
},
get C62() {
return C[62] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286259106.0
});
},
get C63() {
return C[63] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4285143962.0
});
},
get C64() {
return C[64] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4283045004.0
});
},
get C54() {
return C[54] = dart.constMap(T.intL(), T.ColorL(), [50, C[55] || CT.C55, 100, C[56] || CT.C56, 200, C[57] || CT.C57, 300, C[58] || CT.C58, 400, C[59] || CT.C59, 500, C[60] || CT.C60, 600, C[61] || CT.C61, 700, C[62] || CT.C62, 800, C[63] || CT.C63, 900, C[64] || CT.C64]);
},
get C53() {
return C[53] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4288423856.0,
[ColorSwatch__swatch]: C[54] || CT.C54
});
},
get C67() {
return C[67] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293558524.0
});
},
get C68() {
return C[68] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292886779.0
});
},
get C69() {
return C[69] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292149497.0
});
},
get C70() {
return C[70] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289331455.0
});
},
get C66() {
return C[66] = dart.constMap(T.intL(), T.ColorL(), [100, C[67] || CT.C67, 200, C[68] || CT.C68, 400, C[69] || CT.C69, 700, C[70] || CT.C70]);
},
get C65() {
return C[65] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4292886779.0,
[ColorSwatch__swatch]: C[66] || CT.C66
});
},
get C73() {
return C[73] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293781494.0
});
},
get C74() {
return C[74] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4291937513.0
});
},
get C75() {
return C[75] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289961435.0
});
},
get C76() {
return C[76] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4287985101.0
});
},
get C77() {
return C[77] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286470082.0
});
},
get C78() {
return C[78] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4284955319.0
});
},
get C79() {
return C[79] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4284364209.0
});
},
get C80() {
return C[80] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4283510184.0
});
},
get C81() {
return C[81] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4282722208.0
});
},
get C82() {
return C[82] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4281408402.0
});
},
get C72() {
return C[72] = dart.constMap(T.intL(), T.ColorL(), [50, C[73] || CT.C73, 100, C[74] || CT.C74, 200, C[75] || CT.C75, 300, C[76] || CT.C76, 400, C[77] || CT.C77, 500, C[78] || CT.C78, 600, C[79] || CT.C79, 700, C[80] || CT.C80, 800, C[81] || CT.C81, 900, C[82] || CT.C82]);
},
get C71() {
return C[71] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4284955319.0,
[ColorSwatch__swatch]: C[72] || CT.C72
});
},
get C85() {
return C[85] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289956095.0
});
},
get C86() {
return C[86] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286336511.0
});
},
get C87() {
return C[87] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4284817407.0
});
},
get C88() {
return C[88] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4284612842.0
});
},
get C84() {
return C[84] = dart.constMap(T.intL(), T.ColorL(), [100, C[85] || CT.C85, 200, C[86] || CT.C86, 400, C[87] || CT.C87, 700, C[88] || CT.C88]);
},
get C83() {
return C[83] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4286336511.0,
[ColorSwatch__swatch]: C[84] || CT.C84
});
},
get C91() {
return C[91] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293454582.0
});
},
get C92() {
return C[92] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4291152617.0
});
},
get C93() {
return C[93] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4288653530.0
});
},
get C94() {
return C[94] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286154443.0
});
},
get C95() {
return C[95] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4284246976.0
});
},
get C96() {
return C[96] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4282339765.0
});
},
get C97() {
return C[97] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4281944491.0
});
},
get C98() {
return C[98] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4281352095.0
});
},
get C99() {
return C[99] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4280825235.0
});
},
get C100() {
return C[100] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4279903102.0
});
},
get C90() {
return C[90] = dart.constMap(T.intL(), T.ColorL(), [50, C[91] || CT.C91, 100, C[92] || CT.C92, 200, C[93] || CT.C93, 300, C[94] || CT.C94, 400, C[95] || CT.C95, 500, C[96] || CT.C96, 600, C[97] || CT.C97, 700, C[98] || CT.C98, 800, C[99] || CT.C99, 900, C[100] || CT.C100]);
},
get C89() {
return C[89] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4282339765.0,
[ColorSwatch__swatch]: C[90] || CT.C90
});
},
get C103() {
return C[103] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4287405823.0
});
},
get C104() {
return C[104] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4283657726.0
});
},
get C105() {
return C[105] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4282211070.0
});
},
get C106() {
return C[106] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4281356286.0
});
},
get C102() {
return C[102] = dart.constMap(T.intL(), T.ColorL(), [100, C[103] || CT.C103, 200, C[104] || CT.C104, 400, C[105] || CT.C105, 700, C[106] || CT.C106]);
},
get C101() {
return C[101] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4283657726.0,
[ColorSwatch__swatch]: C[102] || CT.C102
});
},
get C109() {
return C[109] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293128957.0
});
},
get C110() {
return C[110] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4290502395.0
});
},
get C111() {
return C[111] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4287679225.0
});
},
get C112() {
return C[112] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4284790262.0
});
},
get C113() {
return C[113] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4282557941.0
});
},
get C114() {
return C[114] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4280391411.0
});
},
get C115() {
return C[115] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4280191205.0
});
},
get C116() {
return C[116] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4279858898.0
});
},
get C117() {
return C[117] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4279592384.0
});
},
get C118() {
return C[118] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4279060385.0
});
},
get C108() {
return C[108] = dart.constMap(T.intL(), T.ColorL(), [50, C[109] || CT.C109, 100, C[110] || CT.C110, 200, C[111] || CT.C111, 300, C[112] || CT.C112, 400, C[113] || CT.C113, 500, C[114] || CT.C114, 600, C[115] || CT.C115, 700, C[116] || CT.C116, 800, C[117] || CT.C117, 900, C[118] || CT.C118]);
},
get C107() {
return C[107] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4280391411.0,
[ColorSwatch__swatch]: C[108] || CT.C108
});
},
get C121() {
return C[121] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286755327.0
});
},
get C122() {
return C[122] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4282682111.0
});
},
get C123() {
return C[123] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4280908287.0
});
},
get C124() {
return C[124] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4280902399.0
});
},
get C120() {
return C[120] = dart.constMap(T.intL(), T.ColorL(), [100, C[121] || CT.C121, 200, C[122] || CT.C122, 400, C[123] || CT.C123, 700, C[124] || CT.C124]);
},
get C119() {
return C[119] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4282682111.0,
[ColorSwatch__swatch]: C[120] || CT.C120
});
},
get C127() {
return C[127] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292998654.0
});
},
get C128() {
return C[128] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289979900.0
});
},
get C129() {
return C[129] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286698746.0
});
},
get C130() {
return C[130] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4283417591.0
});
},
get C131() {
return C[131] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4280923894.0
});
},
get C132() {
return C[132] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278430196.0
});
},
get C133() {
return C[133] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278426597.0
});
},
get C134() {
return C[134] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278356177.0
});
},
get C135() {
return C[135] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278351805.0
});
},
get C136() {
return C[136] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278278043.0
});
},
get C126() {
return C[126] = dart.constMap(T.intL(), T.ColorL(), [50, C[127] || CT.C127, 100, C[128] || CT.C128, 200, C[129] || CT.C129, 300, C[130] || CT.C130, 400, C[131] || CT.C131, 500, C[132] || CT.C132, 600, C[133] || CT.C133, 700, C[134] || CT.C134, 800, C[135] || CT.C135, 900, C[136] || CT.C136]);
},
get C125() {
return C[125] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4278430196.0,
[ColorSwatch__swatch]: C[126] || CT.C126
});
},
get C139() {
return C[139] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286634239.0
});
},
get C140() {
return C[140] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4282434815.0
});
},
get C141() {
return C[141] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278235391.0
});
},
get C142() {
return C[142] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278227434.0
});
},
get C138() {
return C[138] = dart.constMap(T.intL(), T.ColorL(), [100, C[139] || CT.C139, 200, C[140] || CT.C140, 400, C[141] || CT.C141, 700, C[142] || CT.C142]);
},
get C137() {
return C[137] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4282434815.0,
[ColorSwatch__swatch]: C[138] || CT.C138
});
},
get C145() {
return C[145] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292933626.0
});
},
get C146() {
return C[146] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289915890.0
});
},
get C147() {
return C[147] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286635754.0
});
},
get C148() {
return C[148] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4283289825.0
});
},
get C149() {
return C[149] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4280731354.0
});
},
get C150() {
return C[150] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278238420.0
});
},
get C151() {
return C[151] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278234305.0
});
},
get C152() {
return C[152] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278228903.0
});
},
get C153() {
return C[153] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278223759.0
});
},
get C154() {
return C[154] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278214756.0
});
},
get C144() {
return C[144] = dart.constMap(T.intL(), T.ColorL(), [50, C[145] || CT.C145, 100, C[146] || CT.C146, 200, C[147] || CT.C147, 300, C[148] || CT.C148, 400, C[149] || CT.C149, 500, C[150] || CT.C150, 600, C[151] || CT.C151, 700, C[152] || CT.C152, 800, C[153] || CT.C153, 900, C[154] || CT.C154]);
},
get C143() {
return C[143] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4278238420.0,
[ColorSwatch__swatch]: C[144] || CT.C144
});
},
get C157() {
return C[157] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286906367.0
});
},
get C158() {
return C[158] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4279828479.0
});
},
get C159() {
return C[159] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278248959.0
});
},
get C160() {
return C[160] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278237396.0
});
},
get C156() {
return C[156] = dart.constMap(T.intL(), T.ColorL(), [100, C[157] || CT.C157, 200, C[158] || CT.C158, 400, C[159] || CT.C159, 700, C[160] || CT.C160]);
},
get C155() {
return C[155] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4279828479.0,
[ColorSwatch__swatch]: C[156] || CT.C156
});
},
get C163() {
return C[163] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292932337.0
});
},
get C164() {
return C[164] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289912795.0
});
},
get C165() {
return C[165] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286630852.0
});
},
get C166() {
return C[166] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4283283116.0
});
},
get C167() {
return C[167] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4280723098.0
});
},
get C168() {
return C[168] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278228616.0
});
},
get C169() {
return C[169] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278225275.0
});
},
get C170() {
return C[170] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278221163.0
});
},
get C171() {
return C[171] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278217052.0
});
},
get C172() {
return C[172] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278209856.0
});
},
get C162() {
return C[162] = dart.constMap(T.intL(), T.ColorL(), [50, C[163] || CT.C163, 100, C[164] || CT.C164, 200, C[165] || CT.C165, 300, C[166] || CT.C166, 400, C[167] || CT.C167, 500, C[168] || CT.C168, 600, C[169] || CT.C169, 700, C[170] || CT.C170, 800, C[171] || CT.C171, 900, C[172] || CT.C172]);
},
get C161() {
return C[161] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4278228616.0,
[ColorSwatch__swatch]: C[162] || CT.C162
});
},
get C175() {
return C[175] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289200107.0
});
},
get C176() {
return C[176] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4284809178.0
});
},
get C177() {
return C[177] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4280150454.0
});
},
get C178() {
return C[178] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278239141.0
});
},
get C174() {
return C[174] = dart.constMap(T.intL(), T.ColorL(), [100, C[175] || CT.C175, 200, C[176] || CT.C176, 400, C[177] || CT.C177, 700, C[178] || CT.C178]);
},
get C173() {
return C[173] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4284809178.0,
[ColorSwatch__swatch]: C[174] || CT.C174
});
},
get C181() {
return C[181] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293457385.0
});
},
get C182() {
return C[182] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4291356361.0
});
},
get C183() {
return C[183] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289058471.0
});
},
get C184() {
return C[184] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286695300.0
});
},
get C185() {
return C[185] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4284922730.0
});
},
get C186() {
return C[186] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4283215696.0
});
},
get C187() {
return C[187] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4282622023.0
});
},
get C188() {
return C[188] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4281896508.0
});
},
get C189() {
return C[189] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4281236786.0
});
},
get C190() {
return C[190] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4279983648.0
});
},
get C180() {
return C[180] = dart.constMap(T.intL(), T.ColorL(), [50, C[181] || CT.C181, 100, C[182] || CT.C182, 200, C[183] || CT.C183, 300, C[184] || CT.C184, 400, C[185] || CT.C185, 500, C[186] || CT.C186, 600, C[187] || CT.C187, 700, C[188] || CT.C188, 800, C[189] || CT.C189, 900, C[190] || CT.C190]);
},
get C179() {
return C[179] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4283215696.0,
[ColorSwatch__swatch]: C[180] || CT.C180
});
},
get C193() {
return C[193] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4290377418.0
});
},
get C194() {
return C[194] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4285132974.0
});
},
get C195() {
return C[195] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278249078.0
});
},
get C196() {
return C[196] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278241363.0
});
},
get C192() {
return C[192] = dart.constMap(T.intL(), T.ColorL(), [100, C[193] || CT.C193, 200, C[194] || CT.C194, 400, C[195] || CT.C195, 700, C[196] || CT.C196]);
},
get C191() {
return C[191] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4285132974.0,
[ColorSwatch__swatch]: C[192] || CT.C192
});
},
get C199() {
return C[199] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294047977.0
});
},
get C200() {
return C[200] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292668872.0
});
},
get C201() {
return C[201] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4291158437.0
});
},
get C202() {
return C[202] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289648001.0
});
},
get C203() {
return C[203] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4288466021.0
});
},
get C204() {
return C[204] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4287349578.0
});
},
get C205() {
return C[205] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286362434.0
});
},
get C206() {
return C[206] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4285046584.0
});
},
get C207() {
return C[207] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4283796271.0
});
},
get C208() {
return C[208] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4281559326.0
});
},
get C198() {
return C[198] = dart.constMap(T.intL(), T.ColorL(), [50, C[199] || CT.C199, 100, C[200] || CT.C200, 200, C[201] || CT.C201, 300, C[202] || CT.C202, 400, C[203] || CT.C203, 500, C[204] || CT.C204, 600, C[205] || CT.C205, 700, C[206] || CT.C206, 800, C[207] || CT.C207, 900, C[208] || CT.C208]);
},
get C197() {
return C[197] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4287349578.0,
[ColorSwatch__swatch]: C[198] || CT.C198
});
},
get C211() {
return C[211] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4291624848.0
});
},
get C212() {
return C[212] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289920857.0
});
},
get C213() {
return C[213] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4285988611.0
});
},
get C214() {
return C[214] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4284800279.0
});
},
get C210() {
return C[210] = dart.constMap(T.intL(), T.ColorL(), [100, C[211] || CT.C211, 200, C[212] || CT.C212, 400, C[213] || CT.C213, 700, C[214] || CT.C214]);
},
get C209() {
return C[209] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4289920857.0,
[ColorSwatch__swatch]: C[210] || CT.C210
});
},
get C217() {
return C[217] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294573031.0
});
},
get C218() {
return C[218] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293981379.0
});
},
get C219() {
return C[219] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293324444.0
});
},
get C220() {
return C[220] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292667253.0
});
},
get C221() {
return C[221] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292141399.0
});
},
get C222() {
return C[222] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4291681337.0
});
},
get C223() {
return C[223] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4290824755.0
});
},
get C224() {
return C[224] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289705003.0
});
},
get C225() {
return C[225] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4288584996.0
});
},
get C226() {
return C[226] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286740247.0
});
},
get C216() {
return C[216] = dart.constMap(T.intL(), T.ColorL(), [50, C[217] || CT.C217, 100, C[218] || CT.C218, 200, C[219] || CT.C219, 300, C[220] || CT.C220, 400, C[221] || CT.C221, 500, C[222] || CT.C222, 600, C[223] || CT.C223, 700, C[224] || CT.C224, 800, C[225] || CT.C225, 900, C[226] || CT.C226]);
},
get C215() {
return C[215] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4291681337.0,
[ColorSwatch__swatch]: C[216] || CT.C216
});
},
get C229() {
return C[229] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294246273.0
});
},
get C230() {
return C[230] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293852993.0
});
},
get C231() {
return C[231] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4291231488.0
});
},
get C232() {
return C[232] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289653248.0
});
},
get C228() {
return C[228] = dart.constMap(T.intL(), T.ColorL(), [100, C[229] || CT.C229, 200, C[230] || CT.C230, 400, C[231] || CT.C231, 700, C[232] || CT.C232]);
},
get C227() {
return C[227] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4293852993.0,
[ColorSwatch__swatch]: C[228] || CT.C228
});
},
get C235() {
return C[235] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294966759.0
});
},
get C236() {
return C[236] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294965700.0
});
},
get C237() {
return C[237] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294964637.0
});
},
get C238() {
return C[238] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294963574.0
});
},
get C239() {
return C[239] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294962776.0
});
},
get C240() {
return C[240] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294961979.0
});
},
get C241() {
return C[241] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294826037.0
});
},
get C242() {
return C[242] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294688813.0
});
},
get C243() {
return C[243] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294551589.0
});
},
get C244() {
return C[244] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294278935.0
});
},
get C234() {
return C[234] = dart.constMap(T.intL(), T.ColorL(), [50, C[235] || CT.C235, 100, C[236] || CT.C236, 200, C[237] || CT.C237, 300, C[238] || CT.C238, 400, C[239] || CT.C239, 500, C[240] || CT.C240, 600, C[241] || CT.C241, 700, C[242] || CT.C242, 800, C[243] || CT.C243, 900, C[244] || CT.C244]);
},
get C233() {
return C[233] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4294961979.0,
[ColorSwatch__swatch]: C[234] || CT.C234
});
},
get C247() {
return C[247] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294967181.0
});
},
get C248() {
return C[248] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294967040.0
});
},
get C249() {
return C[249] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294961664.0
});
},
get C250() {
return C[250] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294956544.0
});
},
get C246() {
return C[246] = dart.constMap(T.intL(), T.ColorL(), [100, C[247] || CT.C247, 200, C[248] || CT.C248, 400, C[249] || CT.C249, 700, C[250] || CT.C250]);
},
get C245() {
return C[245] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4294967040.0,
[ColorSwatch__swatch]: C[246] || CT.C246
});
},
get C253() {
return C[253] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294965473.0
});
},
get C254() {
return C[254] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294962355.0
});
},
get C255() {
return C[255] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294959234.0
});
},
get C256() {
return C[256] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294956367.0
});
},
get C257() {
return C[257] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294953512.0
});
},
get C258() {
return C[258] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294951175.0
});
},
get C259() {
return C[259] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294947584.0
});
},
get C260() {
return C[260] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294942720.0
});
},
get C261() {
return C[261] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294938368.0
});
},
get C262() {
return C[262] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294930176.0
});
},
get C252() {
return C[252] = dart.constMap(T.intL(), T.ColorL(), [50, C[253] || CT.C253, 100, C[254] || CT.C254, 200, C[255] || CT.C255, 300, C[256] || CT.C256, 400, C[257] || CT.C257, 500, C[258] || CT.C258, 600, C[259] || CT.C259, 700, C[260] || CT.C260, 800, C[261] || CT.C261, 900, C[262] || CT.C262]);
},
get C251() {
return C[251] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4294951175.0,
[ColorSwatch__swatch]: C[252] || CT.C252
});
},
get C265() {
return C[265] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294960511.0
});
},
get C266() {
return C[266] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294956864.0
});
},
get C267() {
return C[267] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294951936.0
});
},
get C268() {
return C[268] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294945536.0
});
},
get C264() {
return C[264] = dart.constMap(T.intL(), T.ColorL(), [100, C[265] || CT.C265, 200, C[266] || CT.C266, 400, C[267] || CT.C267, 700, C[268] || CT.C268]);
},
get C263() {
return C[263] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4294956864.0,
[ColorSwatch__swatch]: C[264] || CT.C264
});
},
get C271() {
return C[271] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294964192.0
});
},
get C272() {
return C[272] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294959282.0
});
},
get C273() {
return C[273] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294954112.0
});
},
get C274() {
return C[274] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294948685.0
});
},
get C275() {
return C[275] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294944550.0
});
},
get C276() {
return C[276] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294940672.0
});
},
get C277() {
return C[277] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294675456.0
});
},
get C278() {
return C[278] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294278144.0
});
},
get C279() {
return C[279] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293880832.0
});
},
get C280() {
return C[280] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293284096.0
});
},
get C270() {
return C[270] = dart.constMap(T.intL(), T.ColorL(), [50, C[271] || CT.C271, 100, C[272] || CT.C272, 200, C[273] || CT.C273, 300, C[274] || CT.C274, 400, C[275] || CT.C275, 500, C[276] || CT.C276, 600, C[277] || CT.C277, 700, C[278] || CT.C278, 800, C[279] || CT.C279, 900, C[280] || CT.C280]);
},
get C269() {
return C[269] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4294940672.0,
[ColorSwatch__swatch]: C[270] || CT.C270
});
},
get C283() {
return C[283] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294955392.0
});
},
get C284() {
return C[284] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294945600.0
});
},
get C285() {
return C[285] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294938880.0
});
},
get C286() {
return C[286] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294929664.0
});
},
get C282() {
return C[282] = dart.constMap(T.intL(), T.ColorL(), [100, C[283] || CT.C283, 200, C[284] || CT.C284, 400, C[285] || CT.C285, 700, C[286] || CT.C286]);
},
get C281() {
return C[281] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4294945600.0,
[ColorSwatch__swatch]: C[282] || CT.C282
});
},
get C289() {
return C[289] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294699495.0
});
},
get C290() {
return C[290] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294954172.0
});
},
get C291() {
return C[291] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294945681.0
});
},
get C292() {
return C[292] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294937189.0
});
},
get C293() {
return C[293] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294930499.0
});
},
get C294() {
return C[294] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294924066.0
});
},
get C295() {
return C[295] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294201630.0
});
},
get C296() {
return C[296] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293282329.0
});
},
get C297() {
return C[297] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292363029.0
});
},
get C298() {
return C[298] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4290721292.0
});
},
get C288() {
return C[288] = dart.constMap(T.intL(), T.ColorL(), [50, C[289] || CT.C289, 100, C[290] || CT.C290, 200, C[291] || CT.C291, 300, C[292] || CT.C292, 400, C[293] || CT.C293, 500, C[294] || CT.C294, 600, C[295] || CT.C295, 700, C[296] || CT.C296, 800, C[297] || CT.C297, 900, C[298] || CT.C298]);
},
get C287() {
return C[287] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4294924066.0,
[ColorSwatch__swatch]: C[288] || CT.C288
});
},
get C301() {
return C[301] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294942336.0
});
},
get C302() {
return C[302] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294929984.0
});
},
get C303() {
return C[303] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294917376.0
});
},
get C304() {
return C[304] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292684800.0
});
},
get C300() {
return C[300] = dart.constMap(T.intL(), T.ColorL(), [100, C[301] || CT.C301, 200, C[302] || CT.C302, 400, C[303] || CT.C303, 700, C[304] || CT.C304]);
},
get C299() {
return C[299] = dart.const({
__proto__: colors$.MaterialAccentColor.prototype,
[Color_value]: 4294929984.0,
[ColorSwatch__swatch]: C[300] || CT.C300
});
},
get C307() {
return C[307] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293913577.0
});
},
get C308() {
return C[308] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292332744.0
});
},
get C309() {
return C[309] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4290554532.0
});
},
get C310() {
return C[310] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4288776319.0
});
},
get C311() {
return C[311] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4287458915.0
});
},
get C312() {
return C[312] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286141768.0
});
},
get C313() {
return C[313] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4285353025.0
});
},
get C314() {
return C[314] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4284301367.0
});
},
get C315() {
return C[315] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4283315246.0
});
},
get C316() {
return C[316] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4282263331.0
});
},
get C306() {
return C[306] = dart.constMap(T.intL(), T.ColorL(), [50, C[307] || CT.C307, 100, C[308] || CT.C308, 200, C[309] || CT.C309, 300, C[310] || CT.C310, 400, C[311] || CT.C311, 500, C[312] || CT.C312, 600, C[313] || CT.C313, 700, C[314] || CT.C314, 800, C[315] || CT.C315, 900, C[316] || CT.C316]);
},
get C305() {
return C[305] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4286141768.0,
[ColorSwatch__swatch]: C[306] || CT.C306
});
},
get C319() {
return C[319] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294638330.0
});
},
get C320() {
return C[320] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4294309365.0
});
},
get C321() {
return C[321] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293848814.0
});
},
get C322() {
return C[322] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292927712.0
});
},
get C323() {
return C[323] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4292269782.0
});
},
get C324() {
return C[324] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4290624957.0
});
},
get C325() {
return C[325] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4288585374.0
});
},
get C326() {
return C[326] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4285887861.0
});
},
get C327() {
return C[327] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4284572001.0
});
},
get C328() {
return C[328] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4282532418.0
});
},
get C329() {
return C[329] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4281348144.0
});
},
get C330() {
return C[330] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4280361249.0
});
},
get C318() {
return C[318] = dart.constMap(T.intL(), T.ColorL(), [50, C[319] || CT.C319, 100, C[320] || CT.C320, 200, C[321] || CT.C321, 300, C[322] || CT.C322, 350, C[323] || CT.C323, 400, C[324] || CT.C324, 500, C[325] || CT.C325, 600, C[326] || CT.C326, 700, C[327] || CT.C327, 800, C[328] || CT.C328, 850, C[329] || CT.C329, 900, C[330] || CT.C330]);
},
get C317() {
return C[317] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4288585374.0,
[ColorSwatch__swatch]: C[318] || CT.C318
});
},
get C333() {
return C[333] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4293718001.0
});
},
get C334() {
return C[334] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4291811548.0
});
},
get C335() {
return C[335] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4289773253.0
});
},
get C336() {
return C[336] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4287669422.0
});
},
get C337() {
return C[337] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4286091420.0
});
},
get C338() {
return C[338] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4284513675.0
});
},
get C339() {
return C[339] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4283723386.0
});
},
get C340() {
return C[340] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4282735204.0
});
},
get C341() {
return C[341] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4281812815.0
});
},
get C342() {
return C[342] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4280693304.0
});
},
get C332() {
return C[332] = dart.constMap(T.intL(), T.ColorL(), [50, C[333] || CT.C333, 100, C[334] || CT.C334, 200, C[335] || CT.C335, 300, C[336] || CT.C336, 400, C[337] || CT.C337, 500, C[338] || CT.C338, 600, C[339] || CT.C339, 700, C[340] || CT.C340, 800, C[341] || CT.C341, 900, C[342] || CT.C342]);
},
get C331() {
return C[331] = dart.const({
__proto__: colors$.MaterialColor.prototype,
[Color_value]: 4284513675.0,
[ColorSwatch__swatch]: C[332] || CT.C332
});
},
get C343() {
return C[343] = dart.constList([C[17] || CT.C17, C[35] || CT.C35, C[53] || CT.C53, C[71] || CT.C71, C[89] || CT.C89, C[107] || CT.C107, C[125] || CT.C125, C[143] || CT.C143, C[161] || CT.C161, C[179] || CT.C179, C[197] || CT.C197, C[215] || CT.C215, C[233] || CT.C233, C[251] || CT.C251, C[269] || CT.C269, C[287] || CT.C287, C[305] || CT.C305, C[331] || CT.C331], T.MaterialColorL());
},
get C344() {
return C[344] = dart.constList([C[29] || CT.C29, C[47] || CT.C47, C[65] || CT.C65, C[83] || CT.C83, C[101] || CT.C101, C[119] || CT.C119, C[137] || CT.C137, C[155] || CT.C155, C[173] || CT.C173, C[191] || CT.C191, C[209] || CT.C209, C[227] || CT.C227, C[245] || CT.C245, C[263] || CT.C263, C[281] || CT.C281, C[299] || CT.C299], T.MaterialAccentColorL());
}
}, false);
var C = Array(345).fill(void 0);
var I = [
"file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/material/colors.dart",
"package:flutter/src/material/colors.dart"
];
colors$.MaterialColor = class MaterialColor extends colors.ColorSwatch$(core.int) {
get shade50() {
return dart.nullCheck(this._get(50));
}
get shade100() {
return dart.nullCheck(this._get(100));
}
get shade200() {
return dart.nullCheck(this._get(200));
}
get shade300() {
return dart.nullCheck(this._get(300));
}
get shade400() {
return dart.nullCheck(this._get(400));
}
get shade500() {
return dart.nullCheck(this._get(500));
}
get shade600() {
return dart.nullCheck(this._get(600));
}
get shade700() {
return dart.nullCheck(this._get(700));
}
get shade800() {
return dart.nullCheck(this._get(800));
}
get shade900() {
return dart.nullCheck(this._get(900));
}
};
(colors$.MaterialColor.new = function(primary, swatch) {
if (primary == null) dart.nullFailed(I[0], 25, 27, "primary");
if (swatch == null) dart.nullFailed(I[0], 25, 52, "swatch");
colors$.MaterialColor.__proto__.new.call(this, primary, swatch);
;
}).prototype = colors$.MaterialColor.prototype;
dart.addTypeTests(colors$.MaterialColor);
dart.addTypeCaches(colors$.MaterialColor);
dart.setGetterSignature(colors$.MaterialColor, () => ({
__proto__: dart.getGetters(colors$.MaterialColor.__proto__),
shade50: ui.Color,
shade100: ui.Color,
shade200: ui.Color,
shade300: ui.Color,
shade400: ui.Color,
shade500: ui.Color,
shade600: ui.Color,
shade700: ui.Color,
shade800: ui.Color,
shade900: ui.Color
}));
dart.setLibraryUri(colors$.MaterialColor, I[1]);
colors$.MaterialAccentColor = class MaterialAccentColor extends colors.ColorSwatch$(core.int) {
get shade50() {
return dart.nullCheck(this._get(50));
}
get shade100() {
return dart.nullCheck(this._get(100));
}
get shade200() {
return dart.nullCheck(this._get(200));
}
get shade400() {
return dart.nullCheck(this._get(400));
}
get shade700() {
return dart.nullCheck(this._get(700));
}
};
(colors$.MaterialAccentColor.new = function(primary, swatch) {
if (primary == null) dart.nullFailed(I[0], 73, 33, "primary");
if (swatch == null) dart.nullFailed(I[0], 73, 58, "swatch");
colors$.MaterialAccentColor.__proto__.new.call(this, primary, swatch);
;
}).prototype = colors$.MaterialAccentColor.prototype;
dart.addTypeTests(colors$.MaterialAccentColor);
dart.addTypeCaches(colors$.MaterialAccentColor);
dart.setGetterSignature(colors$.MaterialAccentColor, () => ({
__proto__: dart.getGetters(colors$.MaterialAccentColor.__proto__),
shade50: ui.Color,
shade100: ui.Color,
shade200: ui.Color,
shade400: ui.Color,
shade700: ui.Color
}));
dart.setLibraryUri(colors$.MaterialAccentColor, I[1]);
var Color_value = dart.privateName(ui, "Color.value");
var ColorSwatch__swatch = dart.privateName(colors, "ColorSwatch._swatch");
colors$.Colors = class Colors extends core.Object {};
(colors$.Colors.__ = function() {
;
}).prototype = colors$.Colors.prototype;
dart.addTypeTests(colors$.Colors);
dart.addTypeCaches(colors$.Colors);
dart.setLibraryUri(colors$.Colors, I[1]);
dart.defineLazy(colors$.Colors, {
/*colors$.Colors.transparent*/get transparent() {
return C[0] || CT.C0;
},
/*colors$.Colors.black*/get black() {
return C[1] || CT.C1;
},
/*colors$.Colors.black87*/get black87() {
return C[2] || CT.C2;
},
/*colors$.Colors.black54*/get black54() {
return C[3] || CT.C3;
},
/*colors$.Colors.black45*/get black45() {
return C[4] || CT.C4;
},
/*colors$.Colors.black38*/get black38() {
return C[5] || CT.C5;
},
/*colors$.Colors.black26*/get black26() {
return C[6] || CT.C6;
},
/*colors$.Colors.black12*/get black12() {
return C[7] || CT.C7;
},
/*colors$.Colors.white*/get white() {
return C[8] || CT.C8;
},
/*colors$.Colors.white70*/get white70() {
return C[9] || CT.C9;
},
/*colors$.Colors.white60*/get white60() {
return C[10] || CT.C10;
},
/*colors$.Colors.white54*/get white54() {
return C[11] || CT.C11;
},
/*colors$.Colors.white38*/get white38() {
return C[12] || CT.C12;
},
/*colors$.Colors.white30*/get white30() {
return C[13] || CT.C13;
},
/*colors$.Colors.white24*/get white24() {
return C[14] || CT.C14;
},
/*colors$.Colors.white12*/get white12() {
return C[15] || CT.C15;
},
/*colors$.Colors.white10*/get white10() {
return C[16] || CT.C16;
},
/*colors$.Colors.red*/get red() {
return C[17] || CT.C17;
},
/*colors$.Colors._redPrimaryValue*/get _redPrimaryValue() {
return 4294198070.0;
},
/*colors$.Colors.redAccent*/get redAccent() {
return C[29] || CT.C29;
},
/*colors$.Colors._redAccentValue*/get _redAccentValue() {
return 4294922834.0;
},
/*colors$.Colors.pink*/get pink() {
return C[35] || CT.C35;
},
/*colors$.Colors._pinkPrimaryValue*/get _pinkPrimaryValue() {
return 4293467747.0;
},
/*colors$.Colors.pinkAccent*/get pinkAccent() {
return C[47] || CT.C47;
},
/*colors$.Colors._pinkAccentPrimaryValue*/get _pinkAccentPrimaryValue() {
return 4294918273.0;
},
/*colors$.Colors.purple*/get purple() {
return C[53] || CT.C53;
},
/*colors$.Colors._purplePrimaryValue*/get _purplePrimaryValue() {
return 4288423856.0;
},
/*colors$.Colors.purpleAccent*/get purpleAccent() {
return C[65] || CT.C65;
},
/*colors$.Colors._purpleAccentPrimaryValue*/get _purpleAccentPrimaryValue() {
return 4292886779.0;
},
/*colors$.Colors.deepPurple*/get deepPurple() {
return C[71] || CT.C71;
},
/*colors$.Colors._deepPurplePrimaryValue*/get _deepPurplePrimaryValue() {
return 4284955319.0;
},
/*colors$.Colors.deepPurpleAccent*/get deepPurpleAccent() {
return C[83] || CT.C83;
},
/*colors$.Colors._deepPurpleAccentPrimaryValue*/get _deepPurpleAccentPrimaryValue() {
return 4286336511.0;
},
/*colors$.Colors.indigo*/get indigo() {
return C[89] || CT.C89;
},
/*colors$.Colors._indigoPrimaryValue*/get _indigoPrimaryValue() {
return 4282339765.0;
},
/*colors$.Colors.indigoAccent*/get indigoAccent() {
return C[101] || CT.C101;
},
/*colors$.Colors._indigoAccentPrimaryValue*/get _indigoAccentPrimaryValue() {
return 4283657726.0;
},
/*colors$.Colors.blue*/get blue() {
return C[107] || CT.C107;
},
/*colors$.Colors._bluePrimaryValue*/get _bluePrimaryValue() {
return 4280391411.0;
},
/*colors$.Colors.blueAccent*/get blueAccent() {
return C[119] || CT.C119;
},
/*colors$.Colors._blueAccentPrimaryValue*/get _blueAccentPrimaryValue() {
return 4282682111.0;
},
/*colors$.Colors.lightBlue*/get lightBlue() {
return C[125] || CT.C125;
},
/*colors$.Colors._lightBluePrimaryValue*/get _lightBluePrimaryValue() {
return 4278430196.0;
},
/*colors$.Colors.lightBlueAccent*/get lightBlueAccent() {
return C[137] || CT.C137;
},
/*colors$.Colors._lightBlueAccentPrimaryValue*/get _lightBlueAccentPrimaryValue() {
return 4282434815.0;
},
/*colors$.Colors.cyan*/get cyan() {
return C[143] || CT.C143;
},
/*colors$.Colors._cyanPrimaryValue*/get _cyanPrimaryValue() {
return 4278238420.0;
},
/*colors$.Colors.cyanAccent*/get cyanAccent() {
return C[155] || CT.C155;
},
/*colors$.Colors._cyanAccentPrimaryValue*/get _cyanAccentPrimaryValue() {
return 4279828479.0;
},
/*colors$.Colors.teal*/get teal() {
return C[161] || CT.C161;
},
/*colors$.Colors._tealPrimaryValue*/get _tealPrimaryValue() {
return 4278228616.0;
},
/*colors$.Colors.tealAccent*/get tealAccent() {
return C[173] || CT.C173;
},
/*colors$.Colors._tealAccentPrimaryValue*/get _tealAccentPrimaryValue() {
return 4284809178.0;
},
/*colors$.Colors.green*/get green() {
return C[179] || CT.C179;
},
/*colors$.Colors._greenPrimaryValue*/get _greenPrimaryValue() {
return 4283215696.0;
},
/*colors$.Colors.greenAccent*/get greenAccent() {
return C[191] || CT.C191;
},
/*colors$.Colors._greenAccentPrimaryValue*/get _greenAccentPrimaryValue() {
return 4285132974.0;
},
/*colors$.Colors.lightGreen*/get lightGreen() {
return C[197] || CT.C197;
},
/*colors$.Colors._lightGreenPrimaryValue*/get _lightGreenPrimaryValue() {
return 4287349578.0;
},
/*colors$.Colors.lightGreenAccent*/get lightGreenAccent() {
return C[209] || CT.C209;
},
/*colors$.Colors._lightGreenAccentPrimaryValue*/get _lightGreenAccentPrimaryValue() {
return 4289920857.0;
},
/*colors$.Colors.lime*/get lime() {
return C[215] || CT.C215;
},
/*colors$.Colors._limePrimaryValue*/get _limePrimaryValue() {
return 4291681337.0;
},
/*colors$.Colors.limeAccent*/get limeAccent() {
return C[227] || CT.C227;
},
/*colors$.Colors._limeAccentPrimaryValue*/get _limeAccentPrimaryValue() {
return 4293852993.0;
},
/*colors$.Colors.yellow*/get yellow() {
return C[233] || CT.C233;
},
/*colors$.Colors._yellowPrimaryValue*/get _yellowPrimaryValue() {
return 4294961979.0;
},
/*colors$.Colors.yellowAccent*/get yellowAccent() {
return C[245] || CT.C245;
},
/*colors$.Colors._yellowAccentPrimaryValue*/get _yellowAccentPrimaryValue() {
return 4294967040.0;
},
/*colors$.Colors.amber*/get amber() {
return C[251] || CT.C251;
},
/*colors$.Colors._amberPrimaryValue*/get _amberPrimaryValue() {
return 4294951175.0;
},
/*colors$.Colors.amberAccent*/get amberAccent() {
return C[263] || CT.C263;
},
/*colors$.Colors._amberAccentPrimaryValue*/get _amberAccentPrimaryValue() {
return 4294956864.0;
},
/*colors$.Colors.orange*/get orange() {
return C[269] || CT.C269;
},
/*colors$.Colors._orangePrimaryValue*/get _orangePrimaryValue() {
return 4294940672.0;
},
/*colors$.Colors.orangeAccent*/get orangeAccent() {
return C[281] || CT.C281;
},
/*colors$.Colors._orangeAccentPrimaryValue*/get _orangeAccentPrimaryValue() {
return 4294945600.0;
},
/*colors$.Colors.deepOrange*/get deepOrange() {
return C[287] || CT.C287;
},
/*colors$.Colors._deepOrangePrimaryValue*/get _deepOrangePrimaryValue() {
return 4294924066.0;
},
/*colors$.Colors.deepOrangeAccent*/get deepOrangeAccent() {
return C[299] || CT.C299;
},
/*colors$.Colors._deepOrangeAccentPrimaryValue*/get _deepOrangeAccentPrimaryValue() {
return 4294929984.0;
},
/*colors$.Colors.brown*/get brown() {
return C[305] || CT.C305;
},
/*colors$.Colors._brownPrimaryValue*/get _brownPrimaryValue() {
return 4286141768.0;
},
/*colors$.Colors.grey*/get grey() {
return C[317] || CT.C317;
},
/*colors$.Colors._greyPrimaryValue*/get _greyPrimaryValue() {
return 4288585374.0;
},
/*colors$.Colors.blueGrey*/get blueGrey() {
return C[331] || CT.C331;
},
/*colors$.Colors._blueGreyPrimaryValue*/get _blueGreyPrimaryValue() {
return 4284513675.0;
},
/*colors$.Colors.primaries*/get primaries() {
return C[343] || CT.C343;
},
/*colors$.Colors.accents*/get accents() {
return C[344] || CT.C344;
}
}, false);
dart.trackLibraries("packages/flutter/src/material/colors.dart", {
"package:flutter/src/material/colors.dart": colors$
}, {
}, '{"version":3,"sourceRoot":"","sources":["colors.dart"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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","file":"../../../../../../../../../../../packages/flutter/src/material/colors.dart.lib.js"}');
// Exports:
return {
src__material__colors: colors$
};
}));
//# sourceMappingURL=colors.dart.lib.js.map
define(['dart_sdk', 'packages/flutter/src/foundation/object.dart'], (function load__packages__flutter__src__painting__alignment_dart(dart_sdk, packages__flutter__src__foundation__object$46dart) {
'use strict';
const core = dart_sdk.core;
const ui = dart_sdk.ui;
const _internal = dart_sdk._internal;
const dart = dart_sdk.dart;
const dartx = dart_sdk.dartx;
const object = packages__flutter__src__foundation__object$46dart.src__foundation__object;
var alignment = Object.create(dart.library);
var $truncate = dartx.truncate;
var $toDouble = dartx.toDouble;
var $modulo = dartx['%'];
var $toStringAsFixed = dartx.toStringAsFixed;
var $runtimeType = dartx.runtimeType;
dart._checkModuleNullSafetyMode(false);
var T = {
_: () => T
};
var T$Eval = Object.assign({
_: () => T$Eval
}, T);
var S = {
_: () => S
};
var S$Eval = Object.assign({
_: () => S$Eval
}, S);
const CT = Object.create({
_: () => (C, CT)
});
dart.defineLazy(CT, {
get C0() {
return C[0] = dart.const({
__proto__: alignment.Alignment.prototype,
[y$]: -1,
[x$]: -1
});
},
get C1() {
return C[1] = dart.const({
__proto__: alignment.Alignment.prototype,
[y$]: -1,
[x$]: 0
});
},
get C2() {
return C[2] = dart.const({
__proto__: alignment.Alignment.prototype,
[y$]: -1,
[x$]: 1
});
},
get C3() {
return C[3] = dart.const({
__proto__: alignment.Alignment.prototype,
[y$]: 0,
[x$]: -1
});
},
get C4() {
return C[4] = dart.const({
__proto__: alignment.Alignment.prototype,
[y$]: 0,
[x$]: 0
});
},
get C5() {
return C[5] = dart.const({
__proto__: alignment.Alignment.prototype,
[y$]: 0,
[x$]: 1
});
},
get C6() {
return C[6] = dart.const({
__proto__: alignment.Alignment.prototype,
[y$]: 1,
[x$]: -1
});
},
get C7() {
return C[7] = dart.const({
__proto__: alignment.Alignment.prototype,
[y$]: 1,
[x$]: 0
});
},
get C8() {
return C[8] = dart.const({
__proto__: alignment.Alignment.prototype,
[y$]: 1,
[x$]: 1
});
},
get C9() {
return C[9] = dart.const({
__proto__: ui.TextDirection.prototype,
[_name]: "TextDirection.rtl",
index: 0
});
},
get C10() {
return C[10] = dart.const({
__proto__: ui.TextDirection.prototype,
[_name]: "TextDirection.ltr",
index: 1
});
},
get C11() {
return C[11] = dart.const({
__proto__: alignment.AlignmentDirectional.prototype,
[y$0]: -1,
[start$]: -1
});
},
get C12() {
return C[12] = dart.const({
__proto__: alignment.AlignmentDirectional.prototype,
[y$0]: -1,
[start$]: 0
});
},
get C13() {
return C[13] = dart.const({
__proto__: alignment.AlignmentDirectional.prototype,
[y$0]: -1,
[start$]: 1
});
},
get C14() {
return C[14] = dart.const({
__proto__: alignment.AlignmentDirectional.prototype,
[y$0]: 0,
[start$]: -1
});
},
get C15() {
return C[15] = dart.const({
__proto__: alignment.AlignmentDirectional.prototype,
[y$0]: 0,
[start$]: 0
});
},
get C16() {
return C[16] = dart.const({
__proto__: alignment.AlignmentDirectional.prototype,
[y$0]: 0,
[start$]: 1
});
},
get C17() {
return C[17] = dart.const({
__proto__: alignment.AlignmentDirectional.prototype,
[y$0]: 1,
[start$]: -1
});
},
get C18() {
return C[18] = dart.const({
__proto__: alignment.AlignmentDirectional.prototype,
[y$0]: 1,
[start$]: 0
});
},
get C19() {
return C[19] = dart.const({
__proto__: alignment.AlignmentDirectional.prototype,
[y$0]: 1,
[start$]: 1
});
},
get C20() {
return C[20] = dart.const({
__proto__: alignment.TextAlignVertical.prototype,
[y$1]: -1
});
},
get C21() {
return C[21] = dart.const({
__proto__: alignment.TextAlignVertical.prototype,
[y$1]: 0
});
},
get C22() {
return C[22] = dart.const({
__proto__: alignment.TextAlignVertical.prototype,
[y$1]: 1
});
}
}, false);
var C = Array(23).fill(void 0);
var I = [
"file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/painting/alignment.dart",
"package:flutter/src/painting/alignment.dart"
];
var _x = dart.privateName(alignment, "_x");
var _start = dart.privateName(alignment, "_start");
var _y = dart.privateName(alignment, "_y");
alignment.AlignmentGeometry = class AlignmentGeometry extends core.Object {
add(other) {
if (other == null) dart.nullFailed(I[0], 43, 43, "other");
return new alignment._MixedAlignment.new(dart.notNull(this[_x]) + dart.notNull(other[_x]), dart.notNull(this[_start]) + dart.notNull(other[_start]), dart.notNull(this[_y]) + dart.notNull(other[_y]));
}
static lerp(a, b, t) {
if (t == null) dart.nullFailed(I[0], 90, 85, "t");
if (!(t != null)) dart.assertFailed(null, I[0], 91, 12, "t != null");
if (a == null && b == null) return null;
if (a == null) return dart.nullCheck(b)['*'](t);
if (b == null) return a['*'](1.0 - dart.notNull(t));
if (alignment.Alignment.is(a) && alignment.Alignment.is(b)) return alignment.Alignment.lerp(a, b, t);
if (alignment.AlignmentDirectional.is(a) && alignment.AlignmentDirectional.is(b)) return alignment.AlignmentDirectional.lerp(a, b, t);
return new alignment._MixedAlignment.new(dart.nullCheck(ui.lerpDouble(a[_x], b[_x], t)), dart.nullCheck(ui.lerpDouble(a[_start], b[_start], t)), dart.nullCheck(ui.lerpDouble(a[_y], b[_y], t)));
}
toString() {
if (this[_start] === 0.0) return alignment.Alignment._stringify(this[_x], this[_y]);
if (this[_x] === 0.0) return alignment.AlignmentDirectional._stringify(this[_start], this[_y]);
return dart.notNull(alignment.Alignment._stringify(this[_x], this[_y])) + " + " + dart.notNull(alignment.AlignmentDirectional._stringify(this[_start], 0.0));
}
_equals(other) {
if (other == null) return false;
return alignment.AlignmentGeometry.is(other) && other[_x] == this[_x] && other[_start] == this[_start] && other[_y] == this[_y];
}
get hashCode() {
return ui.hashValues(this[_x], this[_start], this[_y]);
}
};
(alignment.AlignmentGeometry.new = function() {
;
}).prototype = alignment.AlignmentGeometry.prototype;
dart.addTypeTests(alignment.AlignmentGeometry);
dart.addTypeCaches(alignment.AlignmentGeometry);
dart.setMethodSignature(alignment.AlignmentGeometry, () => ({
__proto__: dart.getMethods(alignment.AlignmentGeometry.__proto__),
add: dart.fnType(alignment.AlignmentGeometry, [alignment.AlignmentGeometry])
}));
dart.setLibraryUri(alignment.AlignmentGeometry, I[1]);
dart.defineExtensionMethods(alignment.AlignmentGeometry, ['toString', '_equals']);
dart.defineExtensionAccessors(alignment.AlignmentGeometry, ['hashCode']);
var x$ = dart.privateName(alignment, "Alignment.x");
var y$ = dart.privateName(alignment, "Alignment.y");
alignment.Alignment = class Alignment extends alignment.AlignmentGeometry {
get x() {
return this[x$];
}
set x(value) {
super.x = value;
}
get y() {
return this[y$];
}
set y(value) {
super.y = value;
}
get [_x]() {
return this.x;
}
get [_start]() {
return 0.0;
}
get [_y]() {
return this.y;
}
add(other) {
if (other == null) dart.nullFailed(I[0], 243, 43, "other");
if (alignment.Alignment.is(other)) return this['+'](other);
return super.add(other);
}
['-'](other) {
if (other == null) dart.nullFailed(I[0], 250, 34, "other");
return new alignment.Alignment.new(dart.notNull(this.x) - dart.notNull(other.x), dart.notNull(this.y) - dart.notNull(other.y));
}
['+'](other) {
if (other == null) dart.nullFailed(I[0], 255, 34, "other");
return new alignment.Alignment.new(dart.notNull(this.x) + dart.notNull(other.x), dart.notNull(this.y) + dart.notNull(other.y));
}
_negate() {
return new alignment.Alignment.new(-dart.notNull(this.x), -dart.notNull(this.y));
}
['*'](other) {
if (other == null) dart.nullFailed(I[0], 267, 31, "other");
return new alignment.Alignment.new(dart.notNull(this.x) * dart.notNull(other), dart.notNull(this.y) * dart.notNull(other));
}
['/'](other) {
if (other == null) dart.nullFailed(I[0], 273, 31, "other");
return new alignment.Alignment.new(dart.notNull(this.x) / dart.notNull(other), dart.notNull(this.y) / dart.notNull(other));
}
['~/'](other) {
if (other == null) dart.nullFailed(I[0], 279, 32, "other");
return new alignment.Alignment.new((dart.notNull(this.x) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this.y) / dart.notNull(other))[$truncate]()[$toDouble]());
}
['%'](other) {
if (other == null) dart.nullFailed(I[0], 285, 31, "other");
return new alignment.Alignment.new(this.x[$modulo](other), this.y[$modulo](other));
}
alongOffset(other) {
if (other == null) dart.nullFailed(I[0], 290, 29, "other");
let centerX = dart.notNull(other.dx) / 2.0;
let centerY = dart.notNull(other.dy) / 2.0;
return new ui.Offset.new(centerX + dart.notNull(this.x) * centerX, centerY + dart.notNull(this.y) * centerY);
}
alongSize(other) {
if (other == null) dart.nullFailed(I[0], 297, 25, "other");
let centerX = dart.notNull(other.width) / 2.0;
let centerY = dart.notNull(other.height) / 2.0;
return new ui.Offset.new(centerX + dart.notNull(this.x) * centerX, centerY + dart.notNull(this.y) * centerY);
}
withinRect(rect) {
if (rect == null) dart.nullFailed(I[0], 304, 26, "rect");
let halfWidth = dart.notNull(rect.width) / 2.0;
let halfHeight = dart.notNull(rect.height) / 2.0;
return new ui.Offset.new(dart.notNull(rect.left) + halfWidth + dart.notNull(this.x) * halfWidth, dart.notNull(rect.top) + halfHeight + dart.notNull(this.y) * halfHeight);
}
inscribe(size, rect) {
if (size == null) dart.nullFailed(I[0], 319, 22, "size");
if (rect == null) dart.nullFailed(I[0], 319, 33, "rect");
let halfWidthDelta = (dart.notNull(rect.width) - dart.notNull(size.width)) / 2.0;
let halfHeightDelta = (dart.notNull(rect.height) - dart.notNull(size.height)) / 2.0;
return new ui.Rect.fromLTWH(dart.notNull(rect.left) + halfWidthDelta + dart.notNull(this.x) * halfWidthDelta, dart.notNull(rect.top) + halfHeightDelta + dart.notNull(this.y) * halfHeightDelta, size.width, size.height);
}
static lerp(a, b, t) {
if (t == null) dart.nullFailed(I[0], 335, 61, "t");
if (!(t != null)) dart.assertFailed(null, I[0], 336, 12, "t != null");
if (a == null && b == null) return null;
if (a == null) return new alignment.Alignment.new(dart.nullCheck(ui.lerpDouble(0.0, dart.nullCheck(b).x, t)), dart.nullCheck(ui.lerpDouble(0.0, b.y, t)));
if (b == null) return new alignment.Alignment.new(dart.nullCheck(ui.lerpDouble(a.x, 0.0, t)), dart.nullCheck(ui.lerpDouble(a.y, 0.0, t)));
return new alignment.Alignment.new(dart.nullCheck(ui.lerpDouble(a.x, b.x, t)), dart.nullCheck(ui.lerpDouble(a.y, b.y, t)));
}
resolve(direction) {
return this;
}
static _stringify(x, y) {
if (x == null) dart.nullFailed(I[0], 349, 35, "x");
if (y == null) dart.nullFailed(I[0], 349, 45, "y");
if (x === -1.0 && y === -1.0) return "Alignment.topLeft";
if (x === 0.0 && y === -1.0) return "Alignment.topCenter";
if (x === 1.0 && y === -1.0) return "Alignment.topRight";
if (x === -1.0 && y === 0.0) return "Alignment.centerLeft";
if (x === 0.0 && y === 0.0) return "Alignment.center";
if (x === 1.0 && y === 0.0) return "Alignment.centerRight";
if (x === -1.0 && y === 1.0) return "Alignment.bottomLeft";
if (x === 0.0 && y === 1.0) return "Alignment.bottomCenter";
if (x === 1.0 && y === 1.0) return "Alignment.bottomRight";
return "Alignment(" + x[$toStringAsFixed](1) + ", " + y[$toStringAsFixed](1) + ")";
}
toString() {
return alignment.Alignment._stringify(this.x, this.y);
}
};
(alignment.Alignment.new = function(x, y) {
if (x == null) dart.nullFailed(I[0], 185, 24, "x");
if (y == null) dart.nullFailed(I[0], 185, 32, "y");
this[x$] = x;
this[y$] = y;
if (!(x != null)) dart.assertFailed(null, I[0], 186, 14, "x != null");
if (!(y != null)) dart.assertFailed(null, I[0], 187, 14, "y != null");
alignment.Alignment.__proto__.new.call(this);
;
}).prototype = alignment.Alignment.prototype;
dart.addTypeTests(alignment.Alignment);
dart.addTypeCaches(alignment.Alignment);
dart.setMethodSignature(alignment.Alignment, () => ({
__proto__: dart.getMethods(alignment.Alignment.__proto__),
'-': dart.fnType(alignment.Alignment, [alignment.Alignment]),
'+': dart.fnType(alignment.Alignment, [alignment.Alignment]),
_negate: dart.fnType(alignment.Alignment, []),
'*': dart.fnType(alignment.Alignment, [core.double]),
'/': dart.fnType(alignment.Alignment, [core.double]),
'~/': dart.fnType(alignment.Alignment, [core.double]),
'%': dart.fnType(alignment.Alignment, [core.double]),
alongOffset: dart.fnType(ui.Offset, [ui.Offset]),
alongSize: dart.fnType(ui.Offset, [ui.Size]),
withinRect: dart.fnType(ui.Offset, [ui.Rect]),
inscribe: dart.fnType(ui.Rect, [ui.Size, ui.Rect]),
resolve: dart.fnType(alignment.Alignment, [dart.nullable(ui.TextDirection)])
}));
dart.setGetterSignature(alignment.Alignment, () => ({
__proto__: dart.getGetters(alignment.Alignment.__proto__),
[_x]: core.double,
[_start]: core.double,
[_y]: core.double
}));
dart.setLibraryUri(alignment.Alignment, I[1]);
dart.setFieldSignature(alignment.Alignment, () => ({
__proto__: dart.getFields(alignment.Alignment.__proto__),
x: dart.finalFieldType(core.double),
y: dart.finalFieldType(core.double)
}));
dart.defineExtensionMethods(alignment.Alignment, ['toString']);
dart.defineLazy(alignment.Alignment, {
/*alignment.Alignment.topLeft*/get topLeft() {
return C[0] || CT.C0;
},
/*alignment.Alignment.topCenter*/get topCenter() {
return C[1] || CT.C1;
},
/*alignment.Alignment.topRight*/get topRight() {
return C[2] || CT.C2;
},
/*alignment.Alignment.centerLeft*/get centerLeft() {
return C[3] || CT.C3;
},
/*alignment.Alignment.center*/get center() {
return C[4] || CT.C4;
},
/*alignment.Alignment.centerRight*/get centerRight() {
return C[5] || CT.C5;
},
/*alignment.Alignment.bottomLeft*/get bottomLeft() {
return C[6] || CT.C6;
},
/*alignment.Alignment.bottomCenter*/get bottomCenter() {
return C[7] || CT.C7;
},
/*alignment.Alignment.bottomRight*/get bottomRight() {
return C[8] || CT.C8;
}
}, false);
var start$ = dart.privateName(alignment, "AlignmentDirectional.start");
var y$0 = dart.privateName(alignment, "AlignmentDirectional.y");
var _name = dart.privateName(ui, "_name");
alignment.AlignmentDirectional = class AlignmentDirectional extends alignment.AlignmentGeometry {
get start() {
return this[start$];
}
set start(value) {
super.start = value;
}
get y() {
return this[y$0];
}
set y(value) {
super.y = value;
}
get [_x]() {
return 0.0;
}
get [_start]() {
return this.start;
}
get [_y]() {
return this.y;
}
add(other) {
if (other == null) dart.nullFailed(I[0], 465, 43, "other");
if (alignment.AlignmentDirectional.is(other)) return this['+'](other);
return super.add(other);
}
['-'](other) {
if (other == null) dart.nullFailed(I[0], 472, 56, "other");
return new alignment.AlignmentDirectional.new(dart.notNull(this.start) - dart.notNull(other.start), dart.notNull(this.y) - dart.notNull(other.y));
}
['+'](other) {
if (other == null) dart.nullFailed(I[0], 477, 56, "other");
return new alignment.AlignmentDirectional.new(dart.notNull(this.start) + dart.notNull(other.start), dart.notNull(this.y) + dart.notNull(other.y));
}
_negate() {
return new alignment.AlignmentDirectional.new(-dart.notNull(this.start), -dart.notNull(this.y));
}
['*'](other) {
if (other == null) dart.nullFailed(I[0], 489, 42, "other");
return new alignment.AlignmentDirectional.new(dart.notNull(this.start) * dart.notNull(other), dart.notNull(this.y) * dart.notNull(other));
}
['/'](other) {
if (other == null) dart.nullFailed(I[0], 495, 42, "other");
return new alignment.AlignmentDirectional.new(dart.notNull(this.start) / dart.notNull(other), dart.notNull(this.y) / dart.notNull(other));
}
['~/'](other) {
if (other == null) dart.nullFailed(I[0], 501, 43, "other");
return new alignment.AlignmentDirectional.new((dart.notNull(this.start) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this.y) / dart.notNull(other))[$truncate]()[$toDouble]());
}
['%'](other) {
if (other == null) dart.nullFailed(I[0], 507, 42, "other");
return new alignment.AlignmentDirectional.new(this.start[$modulo](other), this.y[$modulo](other));
}
static lerp(a, b, t) {
if (t == null) dart.nullFailed(I[0], 516, 94, "t");
if (!(t != null)) dart.assertFailed(null, I[0], 517, 12, "t != null");
if (a == null && b == null) return null;
if (a == null) return new alignment.AlignmentDirectional.new(dart.nullCheck(ui.lerpDouble(0.0, dart.nullCheck(b).start, t)), dart.nullCheck(ui.lerpDouble(0.0, b.y, t)));
if (b == null) return new alignment.AlignmentDirectional.new(dart.nullCheck(ui.lerpDouble(a.start, 0.0, t)), dart.nullCheck(ui.lerpDouble(a.y, 0.0, t)));
return new alignment.AlignmentDirectional.new(dart.nullCheck(ui.lerpDouble(a.start, b.start, t)), dart.nullCheck(ui.lerpDouble(a.y, b.y, t)));
}
resolve(direction) {
if (!(direction != null)) dart.assertFailed("Cannot resolve " + dart.str(this[$runtimeType]) + " without a TextDirection.", I[0], 529, 12, "direction != null");
switch (dart.nullCheck(direction)) {
case C[9] || CT.C9:
{
return new alignment.Alignment.new(-dart.notNull(this.start), this.y);
}
case C[10] || CT.C10:
{
return new alignment.Alignment.new(this.start, this.y);
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
}
static _stringify(start, y) {
if (start == null) dart.nullFailed(I[0], 538, 35, "start");
if (y == null) dart.nullFailed(I[0], 538, 49, "y");
if (start === -1.0 && y === -1.0) return "AlignmentDirectional.topStart";
if (start === 0.0 && y === -1.0) return "AlignmentDirectional.topCenter";
if (start === 1.0 && y === -1.0) return "AlignmentDirectional.topEnd";
if (start === -1.0 && y === 0.0) return "AlignmentDirectional.centerStart";
if (start === 0.0 && y === 0.0) return "AlignmentDirectional.center";
if (start === 1.0 && y === 0.0) return "AlignmentDirectional.centerEnd";
if (start === -1.0 && y === 1.0) return "AlignmentDirectional.bottomStart";
if (start === 0.0 && y === 1.0) return "AlignmentDirectional.bottomCenter";
if (start === 1.0 && y === 1.0) return "AlignmentDirectional.bottomEnd";
return "AlignmentDirectional(" + start[$toStringAsFixed](1) + ", " + y[$toStringAsFixed](1) + ")";
}
toString() {
return alignment.AlignmentDirectional._stringify(this.start, this.y);
}
};
(alignment.AlignmentDirectional.new = function(start, y) {
if (start == null) dart.nullFailed(I[0], 391, 35, "start");
if (y == null) dart.nullFailed(I[0], 391, 47, "y");
this[start$] = start;
this[y$0] = y;
if (!(start != null)) dart.assertFailed(null, I[0], 392, 14, "start != null");
if (!(y != null)) dart.assertFailed(null, I[0], 393, 14, "y != null");
alignment.AlignmentDirectional.__proto__.new.call(this);
;
}).prototype = alignment.AlignmentDirectional.prototype;
dart.addTypeTests(alignment.AlignmentDirectional);
dart.addTypeCaches(alignment.AlignmentDirectional);
dart.setMethodSignature(alignment.AlignmentDirectional, () => ({
__proto__: dart.getMethods(alignment.AlignmentDirectional.__proto__),
'-': dart.fnType(alignment.AlignmentDirectional, [alignment.AlignmentDirectional]),
'+': dart.fnType(alignment.AlignmentDirectional, [alignment.AlignmentDirectional]),
_negate: dart.fnType(alignment.AlignmentDirectional, []),
'*': dart.fnType(alignment.AlignmentDirectional, [core.double]),
'/': dart.fnType(alignment.AlignmentDirectional, [core.double]),
'~/': dart.fnType(alignment.AlignmentDirectional, [core.double]),
'%': dart.fnType(alignment.AlignmentDirectional, [core.double]),
resolve: dart.fnType(alignment.Alignment, [dart.nullable(ui.TextDirection)])
}));
dart.setGetterSignature(alignment.AlignmentDirectional, () => ({
__proto__: dart.getGetters(alignment.AlignmentDirectional.__proto__),
[_x]: core.double,
[_start]: core.double,
[_y]: core.double
}));
dart.setLibraryUri(alignment.AlignmentDirectional, I[1]);
dart.setFieldSignature(alignment.AlignmentDirectional, () => ({
__proto__: dart.getFields(alignment.AlignmentDirectional.__proto__),
start: dart.finalFieldType(core.double),
y: dart.finalFieldType(core.double)
}));
dart.defineExtensionMethods(alignment.AlignmentDirectional, ['toString']);
dart.defineLazy(alignment.AlignmentDirectional, {
/*alignment.AlignmentDirectional.topStart*/get topStart() {
return C[11] || CT.C11;
},
/*alignment.AlignmentDirectional.topCenter*/get topCenter() {
return C[12] || CT.C12;
},
/*alignment.AlignmentDirectional.topEnd*/get topEnd() {
return C[13] || CT.C13;
},
/*alignment.AlignmentDirectional.centerStart*/get centerStart() {
return C[14] || CT.C14;
},
/*alignment.AlignmentDirectional.center*/get center() {
return C[15] || CT.C15;
},
/*alignment.AlignmentDirectional.centerEnd*/get centerEnd() {
return C[16] || CT.C16;
},
/*alignment.AlignmentDirectional.bottomStart*/get bottomStart() {
return C[17] || CT.C17;
},
/*alignment.AlignmentDirectional.bottomCenter*/get bottomCenter() {
return C[18] || CT.C18;
},
/*alignment.AlignmentDirectional.bottomEnd*/get bottomEnd() {
return C[19] || CT.C19;
}
}, false);
var _x$ = dart.privateName(alignment, "_MixedAlignment._x");
var _start$ = dart.privateName(alignment, "_MixedAlignment._start");
var _y$ = dart.privateName(alignment, "_MixedAlignment._y");
alignment._MixedAlignment = class _MixedAlignment extends alignment.AlignmentGeometry {
get [_x]() {
return this[_x$];
}
set [_x](value) {
super[_x] = value;
}
get [_start]() {
return this[_start$];
}
set [_start](value) {
super[_start] = value;
}
get [_y]() {
return this[_y$];
}
set [_y](value) {
super[_y] = value;
}
_negate() {
return new alignment._MixedAlignment.new(-dart.notNull(this[_x]), -dart.notNull(this[_start]), -dart.notNull(this[_y]));
}
['*'](other) {
if (other == null) dart.nullFailed(I[0], 587, 37, "other");
return new alignment._MixedAlignment.new(dart.notNull(this[_x]) * dart.notNull(other), dart.notNull(this[_start]) * dart.notNull(other), dart.notNull(this[_y]) * dart.notNull(other));
}
['/'](other) {
if (other == null) dart.nullFailed(I[0], 596, 37, "other");
return new alignment._MixedAlignment.new(dart.notNull(this[_x]) / dart.notNull(other), dart.notNull(this[_start]) / dart.notNull(other), dart.notNull(this[_y]) / dart.notNull(other));
}
['~/'](other) {
if (other == null) dart.nullFailed(I[0], 605, 38, "other");
return new alignment._MixedAlignment.new((dart.notNull(this[_x]) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this[_start]) / dart.notNull(other))[$truncate]()[$toDouble](), (dart.notNull(this[_y]) / dart.notNull(other))[$truncate]()[$toDouble]());
}
['%'](other) {
if (other == null) dart.nullFailed(I[0], 614, 37, "other");
return new alignment._MixedAlignment.new(this[_x][$modulo](other), this[_start][$modulo](other), this[_y][$modulo](other));
}
resolve(direction) {
if (!(direction != null)) dart.assertFailed("Cannot resolve " + dart.str(this[$runtimeType]) + " without a TextDirection.", I[0], 624, 12, "direction != null");
switch (dart.nullCheck(direction)) {
case C[9] || CT.C9:
{
return new alignment.Alignment.new(dart.notNull(this[_x]) - dart.notNull(this[_start]), this[_y]);
}
case C[10] || CT.C10:
{
return new alignment.Alignment.new(dart.notNull(this[_x]) + dart.notNull(this[_start]), this[_y]);
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
}
};
(alignment._MixedAlignment.new = function(_x, _start, _y) {
if (_x == null) dart.nullFailed(I[0], 566, 30, "_x");
if (_start == null) dart.nullFailed(I[0], 566, 39, "_start");
if (_y == null) dart.nullFailed(I[0], 566, 52, "_y");
this[_x$] = _x;
this[_start$] = _start;
this[_y$] = _y;
alignment._MixedAlignment.__proto__.new.call(this);
;
}).prototype = alignment._MixedAlignment.prototype;
dart.addTypeTests(alignment._MixedAlignment);
dart.addTypeCaches(alignment._MixedAlignment);
dart.setMethodSignature(alignment._MixedAlignment, () => ({
__proto__: dart.getMethods(alignment._MixedAlignment.__proto__),
_negate: dart.fnType(alignment._MixedAlignment, []),
'*': dart.fnType(alignment._MixedAlignment, [core.double]),
'/': dart.fnType(alignment._MixedAlignment, [core.double]),
'~/': dart.fnType(alignment._MixedAlignment, [core.double]),
'%': dart.fnType(alignment._MixedAlignment, [core.double]),
resolve: dart.fnType(alignment.Alignment, [dart.nullable(ui.TextDirection)])
}));
dart.setLibraryUri(alignment._MixedAlignment, I[1]);
dart.setFieldSignature(alignment._MixedAlignment, () => ({
__proto__: dart.getFields(alignment._MixedAlignment.__proto__),
[_x]: dart.finalFieldType(core.double),
[_start]: dart.finalFieldType(core.double),
[_y]: dart.finalFieldType(core.double)
}));
var y$1 = dart.privateName(alignment, "TextAlignVertical.y");
alignment.TextAlignVertical = class TextAlignVertical extends core.Object {
get y() {
return this[y$1];
}
set y(value) {
super.y = value;
}
toString() {
return dart.str(object.objectRuntimeType(this, "TextAlignVertical")) + "(y: " + dart.str(this.y) + ")";
}
};
(alignment.TextAlignVertical.new = function(opts) {
let y = opts && 'y' in opts ? opts.y : null;
if (y == null) dart.nullFailed(I[0], 652, 19, "y");
this[y$1] = y;
if (!(y != null)) dart.assertFailed(null, I[0], 653, 15, "y != null");
if (!(dart.notNull(y) >= -1.0 && dart.notNull(y) <= 1.0)) dart.assertFailed(null, I[0], 654, 15, "y >= -1.0 && y <= 1.0");
;
}).prototype = alignment.TextAlignVertical.prototype;
dart.addTypeTests(alignment.TextAlignVertical);
dart.addTypeCaches(alignment.TextAlignVertical);
dart.setLibraryUri(alignment.TextAlignVertical, I[1]);
dart.setFieldSignature(alignment.TextAlignVertical, () => ({
__proto__: dart.getFields(alignment.TextAlignVertical.__proto__),
y: dart.finalFieldType(core.double)
}));
dart.defineExtensionMethods(alignment.TextAlignVertical, ['toString']);
dart.defineLazy(alignment.TextAlignVertical, {
/*alignment.TextAlignVertical.top*/get top() {
return C[20] || CT.C20;
},
/*alignment.TextAlignVertical.center*/get center() {
return C[21] || CT.C21;
},
/*alignment.TextAlignVertical.bottom*/get bottom() {
return C[22] || CT.C22;
}
}, false);
dart.trackLibraries("packages/flutter/src/painting/alignment.dart", {
"package:flutter/src/painting/alignment.dart": alignment
}, {
}, '{"version":3,"sourceRoot":"","sources":["alignment.dart"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA0C0C;AACtC,YAAO,mCACF,aAAH,yBAAK,AAAM,KAAD,OACH,aAAP,6BAAS,AAAM,KAAD,WACX,aAAH,yBAAK,AAAM,KAAD;IAEd;gBAyCkD,GAAsB;UAAU;AAChF,YAAO,AAAE,CAAD;AACR,UAAI,AAAE,CAAD,YAAY,AAAE,CAAD,UAChB,MAAO;AACT,UAAI,AAAE,CAAD,UACH,MAAQ,AAAE,gBAAH,CAAC,OAAI,CAAC;AACf,UAAI,AAAE,CAAD,UACH,MAAO,AAAE,EAAD,MAAI,AAAI,mBAAE,CAAC;AACrB,UAAM,uBAAF,CAAC,KAAmB,uBAAF,CAAC,GACrB,MAAiB,0BAAK,CAAC,EAAE,CAAC,EAAE,CAAC;AAC/B,UAAM,kCAAF,CAAC,KAA8B,kCAAF,CAAC,GAChC,MAA4B,qCAAK,CAAC,EAAE,CAAC,EAAE,CAAC;AAC1C,YAAO,mCACuB,eAA5B,cAAc,AAAE,CAAD,MAAK,AAAE,CAAD,MAAK,CAAC,IACS,eAApC,cAAc,AAAE,CAAD,UAAS,AAAE,CAAD,UAAS,CAAC,IACP,eAA5B,cAAc,AAAE,CAAD,MAAK,AAAE,CAAD,MAAK,CAAC;IAE/B;;AAeE,UAAI,AAAO,iBAAG,KACZ,MAAiB,gCAAW,UAAI;AAClC,UAAI,AAAG,aAAG,KACR,MAA4B,2CAAW,cAAQ;AACjD,YAAoC,AAAQ,cAA3B,+BAAW,UAAI,aAAM,qBAA6B,0CAAW,cAAQ;IACxF;;UAGwB;AACtB,YAAa,AAGT,gCAHG,KAAK,KACL,AAAM,AAAG,KAAJ,QAAO,YACZ,AAAM,AAAO,KAAR,YAAW,gBAChB,AAAM,AAAG,KAAJ,QAAO;IACrB;;AAGoB,2BAAW,UAAI,cAAQ;IAAG;;;;EAlHrB;;;;;;;;;;;;;IA4KZ;;;;;;IAQA;;;;;;;AAGI;IAAC;;AAGG;IAAG;;AAGP;IAAC;;UA8BsB;AACtC,UAAU,uBAAN,KAAK,GACP,MAAO,AAAK,WAAE,KAAK;AACrB,YAAa,WAAI,KAAK;IACxB;;UAG+B;AAC7B,YAAO,6BAAY,aAAF,uBAAI,AAAM,KAAD,KAAM,aAAF,uBAAI,AAAM,KAAD;IACzC;;UAG+B;AAC7B,YAAO,6BAAY,aAAF,uBAAI,AAAM,KAAD,KAAM,aAAF,uBAAI,AAAM,KAAD;IACzC;;AAKE,YAAO,6BAAU,cAAC,SAAG,cAAC;IACxB;;UAI4B;AAC1B,YAAO,6BAAY,aAAF,uBAAI,KAAK,GAAI,aAAF,uBAAI,KAAK;IACvC;;UAI4B;AAC1B,YAAO,6BAAY,aAAF,uBAAI,KAAK,GAAI,aAAF,uBAAI,KAAK;IACvC;;UAI6B;AAC3B,YAAO,6BAAa,AAAU,cAAZ,uBAAK,KAAK,8BAAiB,AAAU,cAAZ,uBAAK,KAAK;IACvD;;UAI4B;AAC1B,YAAO,6BAAU,AAAE,gBAAE,KAAK,GAAE,AAAE,gBAAE,KAAK;IACvC;;UAG0B;AACX,oBAAmB,aAAT,AAAM,KAAD,OAAM;AACrB,oBAAmB,aAAT,AAAM,KAAD,OAAM;AAClC,YAAO,mBAAO,AAAQ,OAAD,GAAK,aAAF,UAAI,OAAO,EAAE,AAAQ,OAAD,GAAK,aAAF,UAAI,OAAO;IAC5D;;UAGsB;AACP,oBAAsB,aAAZ,AAAM,KAAD,UAAS;AACxB,oBAAuB,aAAb,AAAM,KAAD,WAAU;AACtC,YAAO,mBAAO,AAAQ,OAAD,GAAK,aAAF,UAAI,OAAO,EAAE,AAAQ,OAAD,GAAK,aAAF,UAAI,OAAO;IAC5D;;UAGuB;AACR,sBAAuB,aAAX,AAAK,IAAD,UAAS;AACzB,uBAAyB,aAAZ,AAAK,IAAD,WAAU;AACxC,YAAO,mBACK,AAAY,aAAtB,AAAK,IAAD,SAAQ,SAAS,GAAK,aAAF,UAAI,SAAS,EAC5B,AAAa,aAAtB,AAAK,IAAD,QAAO,UAAU,GAAK,aAAF,UAAI,UAAU;IAE1C;aAQmB,MAAW;UAAX;UAAW;AACf,2BAA2C,CAAd,aAAX,AAAK,IAAD,uBAAS,AAAK,IAAD,WAAU;AAC7C,4BAA8C,CAAf,aAAZ,AAAK,IAAD,wBAAU,AAAK,IAAD,YAAW;AAC7D,YAAY,sBACA,AAAiB,aAA3B,AAAK,IAAD,SAAQ,cAAc,GAAK,aAAF,UAAI,cAAc,EACtC,AAAkB,aAA3B,AAAK,IAAD,QAAO,eAAe,GAAK,aAAF,UAAI,eAAe,EAChD,AAAK,IAAD,QACJ,AAAK,IAAD;IAER;gBAOkC,GAAc;UAAU;AACxD,YAAO,AAAE,CAAD;AACR,UAAI,AAAE,CAAD,YAAY,AAAE,CAAD,UAChB,MAAO;AACT,UAAI,AAAE,CAAD,UACH,MAAO,6BAAqC,eAA3B,cAAc,KAAM,AAAE,eAAH,CAAC,KAAK,CAAC,IAA8B,eAA1B,cAAc,KAAK,AAAE,CAAD,IAAI,CAAC;AAC1E,UAAI,AAAE,CAAD,UACH,MAAO,6BAAoC,eAA1B,cAAc,AAAE,CAAD,IAAI,KAAK,CAAC,IAA8B,eAA1B,cAAc,AAAE,CAAD,IAAI,KAAK,CAAC;AACzE,YAAO,6BAAoC,eAA1B,cAAc,AAAE,CAAD,IAAI,AAAE,CAAD,IAAI,CAAC,IAA8B,eAA1B,cAAc,AAAE,CAAD,IAAI,AAAE,CAAD,IAAI,CAAC;IACzE;YAGiC;AAAc;IAAI;sBAEnB,GAAU;UAAV;UAAU;AACxC,UAAI,AAAE,CAAD,KAAI,CAAC,OAAO,AAAE,CAAD,KAAI,CAAC,KACrB,MAAO;AACT,UAAI,AAAE,CAAD,KAAI,OAAO,AAAE,CAAD,KAAI,CAAC,KACpB,MAAO;AACT,UAAI,AAAE,CAAD,KAAI,OAAO,AAAE,CAAD,KAAI,CAAC,KACpB,MAAO;AACT,UAAI,AAAE,CAAD,KAAI,CAAC,OAAO,AAAE,CAAD,KAAI,KACpB,MAAO;AACT,UAAI,AAAE,CAAD,KAAI,OAAO,AAAE,CAAD,KAAI,KACnB,MAAO;AACT,UAAI,AAAE,CAAD,KAAI,OAAO,AAAE,CAAD,KAAI,KACnB,MAAO;AACT,UAAI,AAAE,CAAD,KAAI,CAAC,OAAO,AAAE,CAAD,KAAI,KACpB,MAAO;AACT,UAAI,AAAE,CAAD,KAAI,OAAO,AAAE,CAAD,KAAI,KACnB,MAAO;AACT,UAAI,AAAE,CAAD,KAAI,OAAO,AAAE,CAAD,KAAI,KACnB,MAAO;AACT,YAAO,gBAAa,AAAE,CAAD,mBAAiB,KAAG,OACrB,AAAE,CAAD,mBAAiB,KAAG;IAC3C;;AAGqB,4CAAW,QAAG;IAAE;;sCA5LhB,GAAQ;QAAR;QAAQ;IAAR;IAAQ;UAClB,AAAE,CAAD;UACD,AAAE,CAAD;AAFN;;EAEe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA6BE,2BAAO;;;MAGP,6BAAS;;;MAGT,4BAAQ;;;MAGR,8BAAU;;;MAGV,0BAAM;;;MAGN,+BAAW;;;MAGX,8BAAU;;;MAGV,gCAAY;;;MAGZ,+BAAW;;;;;;;;IAsKrB;;;;;;IAWA;;;;;;;AAGI;IAAG;;AAGC;IAAK;;AAGT;IAAC;;UAuCsB;AACtC,UAAU,kCAAN,KAAK,GACP,MAAO,AAAK,WAAE,KAAK;AACrB,YAAa,WAAI,KAAK;IACxB;;UAGqD;AACnD,YAAO,wCAA2B,aAAN,2BAAQ,AAAM,KAAD,SAAU,aAAF,uBAAI,AAAM,KAAD;IAC5D;;UAGqD;AACnD,YAAO,wCAA2B,aAAN,2BAAQ,AAAM,KAAD,SAAU,aAAF,uBAAI,AAAM,KAAD;IAC5D;;AAKE,YAAO,wCAAqB,cAAC,aAAO,cAAC;IACvC;;UAIuC;AACrC,YAAO,wCAA2B,aAAN,2BAAQ,KAAK,GAAI,aAAF,uBAAI,KAAK;IACtD;;UAIuC;AACrC,YAAO,wCAA2B,aAAN,2BAAQ,KAAK,GAAI,aAAF,uBAAI,KAAK;IACtD;;UAIwC;AACtC,YAAO,wCAA4B,AAAU,cAAhB,2BAAS,KAAK,8BAAiB,AAAU,cAAZ,uBAAK,KAAK;IACtE;;UAIuC;AACrC,YAAO,wCAAqB,AAAM,oBAAE,KAAK,GAAE,AAAE,gBAAE,KAAK;IACtD;gBAOwD,GAAyB;UAAU;AACzF,YAAO,AAAE,CAAD;AACR,UAAI,AAAE,CAAD,YAAY,AAAE,CAAD,UAChB,MAAO;AACT,UAAI,AAAE,CAAD,UACH,MAAO,wCAAoD,eAA/B,cAAc,KAAM,AAAE,eAAH,CAAC,SAAS,CAAC,IAA8B,eAA1B,cAAc,KAAK,AAAE,CAAD,IAAI,CAAC;AACzF,UAAI,AAAE,CAAD,UACH,MAAO,wCAAmD,eAA9B,cAAc,AAAE,CAAD,QAAQ,KAAK,CAAC,IAA8B,eAA1B,cAAc,AAAE,CAAD,IAAI,KAAK,CAAC;AACxF,YAAO,wCAAuD,eAAlC,cAAc,AAAE,CAAD,QAAQ,AAAE,CAAD,QAAQ,CAAC,IAA8B,eAA1B,cAAc,AAAE,CAAD,IAAI,AAAE,CAAD,IAAI,CAAC;IAC5F;YAGiC;AAC/B,YAAO,AAAU,SAAD,6BAAU,AAAsD,6BAArC,sBAAW;AACtD,cAAiB,eAAT,SAAS;;;AAEb,gBAAO,6BAAU,cAAC,aAAO;;;;AAEzB,gBAAO,6BAAU,YAAO;;;;AAJ5B;;;IAMF;sBAEgC,OAAc;UAAd;UAAc;AAC5C,UAAI,AAAM,KAAD,KAAI,CAAC,OAAO,AAAE,CAAD,KAAI,CAAC,KACzB,MAAO;AACT,UAAI,AAAM,KAAD,KAAI,OAAO,AAAE,CAAD,KAAI,CAAC,KACxB,MAAO;AACT,UAAI,AAAM,KAAD,KAAI,OAAO,AAAE,CAAD,KAAI,CAAC,KACxB,MAAO;AACT,UAAI,AAAM,KAAD,KAAI,CAAC,OAAO,AAAE,CAAD,KAAI,KACxB,MAAO;AACT,UAAI,AAAM,KAAD,KAAI,OAAO,AAAE,CAAD,KAAI,KACvB,MAAO;AACT,UAAI,AAAM,KAAD,KAAI,OAAO,AAAE,CAAD,KAAI,KACvB,MAAO;AACT,UAAI,AAAM,KAAD,KAAI,CAAC,OAAO,AAAE,CAAD,KAAI,KACxB,MAAO;AACT,UAAI,AAAM,KAAD,KAAI,OAAO,AAAE,CAAD,KAAI,KACvB,MAAO;AACT,UAAI,AAAM,KAAD,KAAI,OAAO,AAAE,CAAD,KAAI,KACvB,MAAO;AACT,YAAO,2BAAwB,AAAM,KAAD,mBAAiB,KAAG,OACzB,AAAE,CAAD,mBAAiB,KAAG;IACtD;;AAGqB,uDAAW,YAAO;IAAE;;iDA3KT,OAAY;QAAZ;QAAY;IAAZ;IAAY;UACjC,AAAM,KAAD;UACL,AAAE,CAAD;AAFN;;EAEe;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAoCa,uCAAQ;;;MAMR,wCAAS;;;MAGT,qCAAM;;;MAGN,0CAAW;;;MAMX,qCAAM;;;MAGN,wCAAS;;;MAGT,0CAAW;;;MAMX,2CAAY;;;MAGZ,wCAAS;;;;;;;;IA2G9B;;;;;;IAGA;;;;;;IAGA;;;;;;;AAIX,YAAO,mCACL,cAAC,WACD,cAAC,eACD,cAAC;IAEL;;UAGkC;AAChC,YAAO,mCACF,aAAH,yBAAK,KAAK,GACH,aAAP,6BAAS,KAAK,GACX,aAAH,yBAAK,KAAK;IAEd;;UAGkC;AAChC,YAAO,mCACF,aAAH,yBAAK,KAAK,GACH,aAAP,6BAAS,KAAK,GACX,aAAH,yBAAK,KAAK;IAEd;;UAGmC;AACjC,YAAO,mCACD,AAAU,cAAb,yBAAM,KAAK,8BACJ,AAAU,cAAjB,6BAAU,KAAK,8BACZ,AAAU,cAAb,yBAAM,KAAK;IAEhB;;UAGkC;AAChC,YAAO,mCACL,AAAG,kBAAE,KAAK,GACV,AAAO,sBAAE,KAAK,GACd,AAAG,kBAAE,KAAK;IAEd;YAGiC;AAC/B,YAAO,AAAU,SAAD,6BAAU,AAAsD,6BAArC,sBAAW;AACtD,cAAiB,eAAT,SAAS;;;AAEb,gBAAO,6BAAa,aAAH,yBAAK,eAAQ;;;;AAE9B,gBAAO,6BAAa,aAAH,yBAAK,eAAQ;;;;AAJlC;;;IAMF;;4CAjE2B,IAAS,QAAa;QAAtB;QAAS;QAAa;IAAtB;IAAS;IAAa;AAA3C;;EAA8C;;;;;;;;;;;;;;;;;;;;;IA4FvC;;;;;;;AAaX,YAA+D,UAArD,yBAAkB,MAAM,wBAAqB,kBAAK,UAAC;IAC/D;;;QApBgB;;;UACJ,AAAE,CAAD;UACC,AAAQ,aAAV,CAAC,KAAI,CAAC,OAAS,aAAF,CAAC,KAAI;;EAAI;;;;;;;;;;MAQH,+BAAG;;;MAEH,kCAAM;;;MAGN,kCAAM","file":"../../../../../../../../../../../packages/flutter/src/painting/alignment.dart.lib.js"}');
// Exports:
return {
src__painting__alignment: alignment
};
}));
//# sourceMappingURL=alignment.dart.lib.js.map
define(['dart_sdk', 'packages/flutter/src/widgets/widget_span.dart', 'packages/flutter/src/cupertino/route.dart', 'packages/flutter/src/foundation/debug.dart', 'packages/flutter/src/material/icon_button.dart', 'packages/flutter/src/animation/listener_helpers.dart'], (function load__packages__flutter__src__material__page_dart(dart_sdk, packages__flutter__src__widgets__widget_span$46dart, packages__flutter__src__cupertino__route$46dart, packages__flutter__src__foundation__debug$46dart, packages__flutter__src__material__icon_button$46dart, packages__flutter__src__animation__listener_helpers$46dart) {
'use strict';
const core = dart_sdk.core;
const ui = dart_sdk.ui;
const dart = dart_sdk.dart;
const dartx = dart_sdk.dartx;
const pages = packages__flutter__src__widgets__widget_span$46dart.src__widgets__pages;
const basic = packages__flutter__src__widgets__widget_span$46dart.src__widgets__basic;
const widget_inspector = packages__flutter__src__widgets__widget_span$46dart.src__widgets__widget_inspector;
const framework = packages__flutter__src__widgets__widget_span$46dart.src__widgets__framework;
const navigator = packages__flutter__src__widgets__widget_span$46dart.src__widgets__navigator;
const route = packages__flutter__src__cupertino__route$46dart.src__cupertino__route;
const assertions = packages__flutter__src__foundation__debug$46dart.src__foundation__assertions;
const theme$ = packages__flutter__src__material__icon_button$46dart.src__material__theme;
const animation = packages__flutter__src__animation__listener_helpers$46dart.src__animation__animation;
var page = Object.create(dart.library);
dart._checkModuleNullSafetyMode(false);
var T$ = {
VoidTobool: () => (T$.VoidTobool = dart.constFn(dart.fnType(core.bool, [])))(),
_LocationL: () => (T$._LocationL = dart.constFn(dart.legacy(widget_inspector._Location)))()
};
var T$Eval = Object.assign({
_: () => T$Eval
}, T$);
var S = {
_: () => S
};
var S$Eval = Object.assign({
_: () => S$Eval
}, S);
const CT = Object.create({
_: () => (C, CT)
});
dart.defineLazy(CT, {
get C0() {
return C[0] = dart.const({
__proto__: core.Duration.prototype,
[Duration__duration]: 300000
});
},
get C3() {
return C[3] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "scopesRoute",
[_Location_column]: 7,
[_Location_line]: 118,
[_Location_file]: null
});
},
get C4() {
return C[4] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "explicitChildNodes",
[_Location_column]: 7,
[_Location_line]: 119,
[_Location_file]: null
});
},
get C5() {
return C[5] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 7,
[_Location_line]: 120,
[_Location_file]: null
});
},
get C2() {
return C[2] = dart.constList([C[3] || CT.C3, C[4] || CT.C4, C[5] || CT.C5], T$._LocationL());
},
get C1() {
return C[1] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[2] || CT.C2,
[_Location_name]: null,
[_Location_column]: 12,
[_Location_line]: 117,
[_Location_file]: "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/material/page.dart"
});
}
}, false);
var C = Array(6).fill(void 0);
var I = [
"file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/material/page.dart",
"package:flutter/src/material/page.dart"
];
var builder$ = dart.privateName(page, "MaterialPageRoute.builder");
var maintainState$ = dart.privateName(page, "MaterialPageRoute.maintainState");
var Duration__duration = dart.privateName(core, "Duration._duration");
var _Location_parameterLocations = dart.privateName(widget_inspector, "_Location.parameterLocations");
var _Location_name = dart.privateName(widget_inspector, "_Location.name");
var _Location_column = dart.privateName(widget_inspector, "_Location.column");
var _Location_line = dart.privateName(widget_inspector, "_Location.line");
var _Location_file = dart.privateName(widget_inspector, "_Location.file");
const _is_MaterialRouteTransitionMixin_default = Symbol('_is_MaterialRouteTransitionMixin_default');
page.MaterialRouteTransitionMixin$ = dart.generic(T => {
class MaterialRouteTransitionMixin extends pages.PageRoute$(T) {}
MaterialRouteTransitionMixin[dart.mixinOn] = PageRoute => class MaterialRouteTransitionMixin extends PageRoute {
get transitionDuration() {
return C[0] || CT.C0;
}
get barrierColor() {
return null;
}
get barrierLabel() {
return null;
}
canTransitionTo(nextRoute) {
if (nextRoute == null) dart.nullFailed(I[0], 95, 49, "nextRoute");
return page.MaterialRouteTransitionMixin.is(nextRoute) && !dart.test(nextRoute.fullscreenDialog) || route.CupertinoRouteTransitionMixin.is(nextRoute) && !dart.test(nextRoute.fullscreenDialog);
}
buildPage(context, animation, secondaryAnimation) {
if (context == null) dart.nullFailed(I[0], 103, 18, "context");
if (animation == null) dart.nullFailed(I[0], 104, 23, "animation");
if (secondaryAnimation == null) dart.nullFailed(I[0], 105, 23, "secondaryAnimation");
let result = this.buildContent(context);
if (!dart.test(dart.fn(() => {
if (result == null) {
dart.throw(assertions.FlutterError.new("The builder for route \"" + dart.str(this.settings.name) + "\" returned null.\n" + "Route builders must never return null."));
}
return true;
}, T$.VoidTobool())())) dart.assertFailed(null, I[0], 108, 12, "() {\r\n if (result == null) {\r\n throw FlutterError(\r\n 'The builder for route \"${settings.name}\" returned null.\\n'\r\n 'Route builders must never return null.'\r\n );\r\n }\r\n return true;\r\n }()");
return new basic.Semantics.new({scopesRoute: true, explicitChildNodes: true, child: result, $creationLocationd_0dea112b090073317d4: C[1] || CT.C1});
}
buildTransitions(context, animation, secondaryAnimation, child) {
if (context == null) dart.nullFailed(I[0], 125, 40, "context");
if (animation == null) dart.nullFailed(I[0], 125, 67, "animation");
if (secondaryAnimation == null) dart.nullFailed(I[0], 125, 96, "secondaryAnimation");
if (child == null) dart.nullFailed(I[0], 125, 123, "child");
let theme = theme$.Theme.of(context).pageTransitionsTheme;
return theme.buildTransitions(T, this, context, animation, secondaryAnimation, child);
}
};
dart.addTypeTests(MaterialRouteTransitionMixin);
MaterialRouteTransitionMixin.prototype[_is_MaterialRouteTransitionMixin_default] = true;
dart.addTypeCaches(MaterialRouteTransitionMixin);
MaterialRouteTransitionMixin[dart.implements] = () => [pages.PageRoute$(T)];
dart.setMethodSignature(MaterialRouteTransitionMixin, () => ({
__proto__: dart.getMethods(MaterialRouteTransitionMixin.__proto__),
buildPage: dart.fnType(framework.Widget, [framework.BuildContext, animation.Animation$(core.double), animation.Animation$(core.double)])
}));
dart.setGetterSignature(MaterialRouteTransitionMixin, () => ({
__proto__: dart.getGetters(MaterialRouteTransitionMixin.__proto__),
transitionDuration: core.Duration,
barrierColor: dart.nullable(ui.Color),
barrierLabel: dart.nullable(core.String)
}));
dart.setLibraryUri(MaterialRouteTransitionMixin, I[1]);
return MaterialRouteTransitionMixin;
});
page.MaterialRouteTransitionMixin = page.MaterialRouteTransitionMixin$();
dart.addTypeTests(page.MaterialRouteTransitionMixin, _is_MaterialRouteTransitionMixin_default);
const _is_MaterialPageRoute_default = Symbol('_is_MaterialPageRoute_default');
page.MaterialPageRoute$ = dart.generic(T => {
const PageRoute_MaterialRouteTransitionMixin$36 = class PageRoute_MaterialRouteTransitionMixin extends pages.PageRoute$(T) {};
(PageRoute_MaterialRouteTransitionMixin$36.new = function(opts) {
PageRoute_MaterialRouteTransitionMixin$36.__proto__.new.call(this, opts);
}).prototype = PageRoute_MaterialRouteTransitionMixin$36.prototype;
dart.applyMixin(PageRoute_MaterialRouteTransitionMixin$36, page.MaterialRouteTransitionMixin$(T));
class MaterialPageRoute extends PageRoute_MaterialRouteTransitionMixin$36 {
get builder() {
return this[builder$];
}
set builder(value) {
super.builder = value;
}
get maintainState() {
return this[maintainState$];
}
set maintainState(value) {
super.maintainState = value;
}
buildContent(context) {
let t0;
if (context == null) dart.nullFailed(I[0], 54, 36, "context");
t0 = context;
return this.builder(t0);
}
get debugLabel() {
return dart.str(super.debugLabel) + "(" + dart.str(this.settings.name) + ")";
}
}
(MaterialPageRoute.new = function(opts) {
let builder = opts && 'builder' in opts ? opts.builder : null;
if (builder == null) dart.nullFailed(I[0], 39, 19, "builder");
let settings = opts && 'settings' in opts ? opts.settings : null;
let maintainState = opts && 'maintainState' in opts ? opts.maintainState : true;
if (maintainState == null) dart.nullFailed(I[0], 41, 10, "maintainState");
let fullscreenDialog = opts && 'fullscreenDialog' in opts ? opts.fullscreenDialog : false;
if (fullscreenDialog == null) dart.nullFailed(I[0], 42, 10, "fullscreenDialog");
this[builder$] = builder;
this[maintainState$] = maintainState;
if (!(builder != null)) dart.assertFailed(null, I[0], 43, 15, "builder != null");
if (!(maintainState != null)) dart.assertFailed(null, I[0], 44, 15, "maintainState != null");
if (!(fullscreenDialog != null)) dart.assertFailed(null, I[0], 45, 15, "fullscreenDialog != null");
MaterialPageRoute.__proto__.new.call(this, {settings: settings, fullscreenDialog: fullscreenDialog});
if (!dart.test(this.opaque)) dart.assertFailed(null, I[0], 47, 12, "opaque");
}).prototype = MaterialPageRoute.prototype;
dart.addTypeTests(MaterialPageRoute);
MaterialPageRoute.prototype[_is_MaterialPageRoute_default] = true;
dart.addTypeCaches(MaterialPageRoute);
dart.setMethodSignature(MaterialPageRoute, () => ({
__proto__: dart.getMethods(MaterialPageRoute.__proto__),
buildContent: dart.fnType(framework.Widget, [framework.BuildContext])
}));
dart.setLibraryUri(MaterialPageRoute, I[1]);
dart.setFieldSignature(MaterialPageRoute, () => ({
__proto__: dart.getFields(MaterialPageRoute.__proto__),
builder: dart.finalFieldType(dart.fnType(framework.Widget, [framework.BuildContext])),
maintainState: dart.finalFieldType(core.bool)
}));
return MaterialPageRoute;
});
page.MaterialPageRoute = page.MaterialPageRoute$();
dart.addTypeTests(page.MaterialPageRoute, _is_MaterialPageRoute_default);
var child$ = dart.privateName(page, "MaterialPage.child");
var maintainState$0 = dart.privateName(page, "MaterialPage.maintainState");
var fullscreenDialog$ = dart.privateName(page, "MaterialPage.fullscreenDialog");
const _is_MaterialPage_default = Symbol('_is_MaterialPage_default');
page.MaterialPage$ = dart.generic(T => {
var _PageBasedMaterialPageRouteOfT = () => (_PageBasedMaterialPageRouteOfT = dart.constFn(page._PageBasedMaterialPageRoute$(T)))();
class MaterialPage extends navigator.Page$(T) {
get child() {
return this[child$];
}
set child(value) {
super.child = value;
}
get maintainState() {
return this[maintainState$0];
}
set maintainState(value) {
super.maintainState = value;
}
get fullscreenDialog() {
return this[fullscreenDialog$];
}
set fullscreenDialog(value) {
super.fullscreenDialog = value;
}
createRoute(context) {
if (context == null) dart.nullFailed(I[0], 175, 37, "context");
return new (_PageBasedMaterialPageRouteOfT()).new({page: this});
}
}
(MaterialPage.new = function(opts) {
let child = opts && 'child' in opts ? opts.child : null;
if (child == null) dart.nullFailed(I[0], 154, 19, "child");
let maintainState = opts && 'maintainState' in opts ? opts.maintainState : true;
if (maintainState == null) dart.nullFailed(I[0], 155, 10, "maintainState");
let fullscreenDialog = opts && 'fullscreenDialog' in opts ? opts.fullscreenDialog : false;
if (fullscreenDialog == null) dart.nullFailed(I[0], 156, 10, "fullscreenDialog");
let key = opts && 'key' in opts ? opts.key : null;
let name = opts && 'name' in opts ? opts.name : null;
let $arguments = opts && 'arguments' in opts ? opts.arguments : null;
this[child$] = child;
this[maintainState$0] = maintainState;
this[fullscreenDialog$] = fullscreenDialog;
if (!(child != null)) dart.assertFailed(null, I[0], 160, 15, "child != null");
if (!(maintainState != null)) dart.assertFailed(null, I[0], 161, 15, "maintainState != null");
if (!(fullscreenDialog != null)) dart.assertFailed(null, I[0], 162, 15, "fullscreenDialog != null");
MaterialPage.__proto__.new.call(this, {key: key, name: name, arguments: $arguments});
;
}).prototype = MaterialPage.prototype;
dart.addTypeTests(MaterialPage);
MaterialPage.prototype[_is_MaterialPage_default] = true;
dart.addTypeCaches(MaterialPage);
dart.setMethodSignature(MaterialPage, () => ({
__proto__: dart.getMethods(MaterialPage.__proto__),
createRoute: dart.fnType(navigator.Route$(T), [framework.BuildContext])
}));
dart.setLibraryUri(MaterialPage, I[1]);
dart.setFieldSignature(MaterialPage, () => ({
__proto__: dart.getFields(MaterialPage.__proto__),
child: dart.finalFieldType(framework.Widget),
maintainState: dart.finalFieldType(core.bool),
fullscreenDialog: dart.finalFieldType(core.bool)
}));
return MaterialPage;
});
page.MaterialPage = page.MaterialPage$();
dart.addTypeTests(page.MaterialPage, _is_MaterialPage_default);
var _page = dart.privateName(page, "_page");
const _is__PageBasedMaterialPageRoute_default = Symbol('_is__PageBasedMaterialPageRoute_default');
page._PageBasedMaterialPageRoute$ = dart.generic(T => {
var MaterialPageOfT = () => (MaterialPageOfT = dart.constFn(page.MaterialPage$(T)))();
const PageRoute_MaterialRouteTransitionMixin$36 = class PageRoute_MaterialRouteTransitionMixin extends pages.PageRoute$(T) {};
(PageRoute_MaterialRouteTransitionMixin$36.new = function(opts) {
PageRoute_MaterialRouteTransitionMixin$36.__proto__.new.call(this, opts);
}).prototype = PageRoute_MaterialRouteTransitionMixin$36.prototype;
dart.applyMixin(PageRoute_MaterialRouteTransitionMixin$36, page.MaterialRouteTransitionMixin$(T));
class _PageBasedMaterialPageRoute extends PageRoute_MaterialRouteTransitionMixin$36 {
get [_page]() {
return MaterialPageOfT().as(this.settings);
}
buildContent(context) {
if (context == null) dart.nullFailed(I[0], 195, 36, "context");
return this[_page].child;
}
get maintainState() {
return this[_page].maintainState;
}
get fullscreenDialog() {
return this[_page].fullscreenDialog;
}
get debugLabel() {
return dart.str(super.debugLabel) + "(" + dart.str(this[_page].name) + ")";
}
}
(_PageBasedMaterialPageRoute.new = function(opts) {
let page = opts && 'page' in opts ? opts.page : null;
if (page == null) dart.nullFailed(I[0], 186, 30, "page");
if (!(page != null)) dart.assertFailed(null, I[0], 187, 15, "page != null");
_PageBasedMaterialPageRoute.__proto__.new.call(this, {settings: page});
if (!dart.test(this.opaque)) dart.assertFailed(null, I[0], 189, 12, "opaque");
}).prototype = _PageBasedMaterialPageRoute.prototype;
dart.addTypeTests(_PageBasedMaterialPageRoute);
_PageBasedMaterialPageRoute.prototype[_is__PageBasedMaterialPageRoute_default] = true;
dart.addTypeCaches(_PageBasedMaterialPageRoute);
dart.setMethodSignature(_PageBasedMaterialPageRoute, () => ({
__proto__: dart.getMethods(_PageBasedMaterialPageRoute.__proto__),
buildContent: dart.fnType(framework.Widget, [framework.BuildContext])
}));
dart.setGetterSignature(_PageBasedMaterialPageRoute, () => ({
__proto__: dart.getGetters(_PageBasedMaterialPageRoute.__proto__),
[_page]: page.MaterialPage$(T),
maintainState: core.bool,
fullscreenDialog: core.bool
}));
dart.setLibraryUri(_PageBasedMaterialPageRoute, I[1]);
return _PageBasedMaterialPageRoute;
});
page._PageBasedMaterialPageRoute = page._PageBasedMaterialPageRoute$();
dart.addTypeTests(page._PageBasedMaterialPageRoute, _is__PageBasedMaterialPageRoute_default);
dart.trackLibraries("packages/flutter/src/material/page.dart", {
"package:flutter/src/material/page.dart": page
}, {
}, '{"version":3,"sourceRoot":"","sources":["page.dart"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqFqC;MAAiC;;AAGzC;MAAI;;AAGH;MAAI;;YAGc;AAE5C,cAAkB,AAChB,sCADM,SAAS,gBAAqC,AAAU,SAAD,sBAC/C,uCAAV,SAAS,gBAAsC,AAAU,SAAD;MAChE;gBAIe,SACK,WACA;YAFL;YACK;YACA;AAEL,qBAAS,kBAAa,OAAO;AAC1C,uBAAO,AAQN;AAPC,cAAI,AAAO,MAAD;AAIP,YAHD,WAAM,4BAAY,AAChB,sCAA0B,AAAS,sBAAK,wBACxC;;AAGJ,gBAAO;;AAET,cAAO,uCACQ,0BACO,aACb,MAAM;MAEjB;uBAGqC,SAA2B,WAA6B,oBAA2B;YAAnF;YAA2B;YAA6B;YAA2B;AAC3F,oBAAc,AAAY,gBAAT,OAAO;AACnD,cAAO,AAAM,MAAD,qBAAqB,MAAM,OAAO,EAAE,SAAS,EAAE,kBAAkB,EAAE,KAAK;MACtF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA7EoB;;;;;;MAMT;;;;;;mBAHsB;;;AAAY,aAAQ,OAAO;cAAf,AAAO;MAAS;;AAMpC,cAAuC,UAA9B,oBAAW,eAAG,AAAS,sBAAK;MAAE;;;UArBhD;;UACC;UACV;;UACA;;MAHS;MAET;YAEK,AAAQ,OAAD;YACP,AAAc,aAAD;YACb,AAAiB,gBAAD;AACvB,4DAAgB,QAAQ,oBAAoB,gBAAgB;AAC/D,qBAAO;IACT;;;;;;;;;;;;;;;;;;;;;;;;;MAsHa;;;;;;MAGF;;;;;;MAGA;;;;;;;YAGuB;AAChC,cAAO,mDAAqC;MAC9C;;;UAvBgB;;UACT;;UACA;;UACK;UACF;UACA;MALM;MACT;MACA;YAIK,AAAM,KAAD;YACL,AAAc,aAAD;YACb,AAAiB,gBAAD;AACvB,kDAAW,GAAG,QAAQ,IAAI,aAAa;;IAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BzB,cAAS,sBAAT;MAA2B;;YAGvB;AAC/B,cAAO,AAAM;MACf;;AAG0B,cAAA,AAAM;MAAa;;AAGhB,cAAA,AAAM;MAAgB;;AAG1B,cAAoC,UAA3B,oBAAW,eAAG,AAAM,oBAAK;MAAE;;;UApBlC;;YACf,AAAK,IAAD;AACX,sEAAgB,IAAI;AACvB,qBAAO;IACT","file":"../../../../../../../../../../../packages/flutter/src/material/page.dart.lib.js"}');
// Exports:
return {
src__material__page: page
};
}));
//# sourceMappingURL=page.dart.lib.js.map
define(['dart_sdk', 'packages/flutter/src/painting/basic_types.dart', 'packages/flutter/src/gestures/recognizer.dart', 'packages/flutter/src/widgets/widget_span.dart', 'packages/flutter/src/rendering/viewport_offset.dart', 'packages/flutter/src/painting/edge_insets.dart', 'packages/flutter/src/rendering/layer.dart', 'packages/flutter/src/rendering/sliver.dart', 'packages/flutter/src/painting/matrix_utils.dart', 'packages/flutter/src/animation/curves.dart'], (function load__packages__flutter__src__widgets__single_child_scroll_view_dart(dart_sdk, packages__flutter__src__painting__basic_types$46dart, packages__flutter__src__gestures__recognizer$46dart, packages__flutter__src__widgets__widget_span$46dart, packages__flutter__src__rendering__viewport_offset$46dart, packages__flutter__src__painting__edge_insets$46dart, packages__flutter__src__rendering__layer$46dart, packages__flutter__src__rendering__sliver$46dart, packages__flutter__src__painting__matrix_utils$46dart, packages__flutter__src__animation__curves$46dart) {
'use strict';
const core = dart_sdk.core;
const ui = dart_sdk.ui;
const _internal = dart_sdk._internal;
const math = dart_sdk.math;
const dart = dart_sdk.dart;
const dartx = dart_sdk.dartx;
const basic_types = packages__flutter__src__painting__basic_types$46dart.src__painting__basic_types;
const recognizer = packages__flutter__src__gestures__recognizer$46dart.src__gestures__recognizer;
const basic = packages__flutter__src__widgets__widget_span$46dart.src__widgets__basic;
const widget_inspector = packages__flutter__src__widgets__widget_span$46dart.src__widgets__widget_inspector;
const primary_scroll_controller = packages__flutter__src__widgets__widget_span$46dart.src__widgets__primary_scroll_controller;
const scrollable$ = packages__flutter__src__widgets__widget_span$46dart.src__widgets__scrollable;
const framework = packages__flutter__src__widgets__widget_span$46dart.src__widgets__framework;
const scroll_controller = packages__flutter__src__widgets__widget_span$46dart.src__widgets__scroll_controller;
const scroll_physics = packages__flutter__src__widgets__widget_span$46dart.src__widgets__scroll_physics;
const viewport_offset = packages__flutter__src__rendering__viewport_offset$46dart.src__rendering__viewport_offset;
const edge_insets = packages__flutter__src__painting__edge_insets$46dart.src__painting__edge_insets;
const object = packages__flutter__src__rendering__layer$46dart.src__rendering__object;
const box = packages__flutter__src__rendering__layer$46dart.src__rendering__box;
const layer = packages__flutter__src__rendering__layer$46dart.src__rendering__layer;
const viewport = packages__flutter__src__rendering__sliver$46dart.src__rendering__viewport;
const matrix_utils = packages__flutter__src__painting__matrix_utils$46dart.src__painting__matrix_utils;
const curves = packages__flutter__src__animation__curves$46dart.src__animation__curves;
var single_child_scroll_view = Object.create(dart.library);
dart._checkModuleNullSafetyMode(false);
var T = {
_LocationL: () => (T._LocationL = dart.constFn(dart.legacy(widget_inspector._Location)))(),
BuildContextAndViewportOffsetTo_SingleChildViewport: () => (T.BuildContextAndViewportOffsetTo_SingleChildViewport = dart.constFn(dart.fnType(single_child_scroll_view._SingleChildViewport, [framework.BuildContext, viewport_offset.ViewportOffset])))(),
PaintingContextAndOffsetTovoid: () => (T.PaintingContextAndOffsetTovoid = dart.constFn(dart.fnType(dart.void, [object.PaintingContext, ui.Offset])))(),
RenderObjectN: () => (T.RenderObjectN = dart.constFn(dart.nullable(object.RenderObject)))(),
OffsetN: () => (T.OffsetN = dart.constFn(dart.nullable(ui.Offset)))(),
BoxHitTestResultAndOffsetNTobool: () => (T.BoxHitTestResultAndOffsetNTobool = dart.constFn(dart.fnType(core.bool, [box.BoxHitTestResult, T.OffsetN()])))()
};
var T$Eval = Object.assign({
_: () => T$Eval
}, T);
var S = {
_: () => S
};
var S$Eval = Object.assign({
_: () => S$Eval
}, S);
const CT = Object.create({
_: () => (C, CT)
});
dart.defineLazy(CT, {
get C0() {
return C[0] = dart.const({
__proto__: basic_types.Axis.prototype,
[_name]: "Axis.vertical",
index: 1
});
},
get C1() {
return C[1] = dart.const({
__proto__: recognizer.DragStartBehavior.prototype,
[_name$]: "DragStartBehavior.start",
index: 1
});
},
get C2() {
return C[2] = dart.const({
__proto__: ui.Clip.prototype,
[_name$0]: "Clip.hardEdge",
index: 1
});
},
get C5() {
return C[5] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "padding",
[_Location_column]: 26,
[_Location_line]: 318,
[_Location_file]: null
});
},
get C6() {
return C[6] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 45,
[_Location_line]: 318,
[_Location_file]: null
});
},
get C4() {
return C[4] = dart.constList([C[5] || CT.C5, C[6] || CT.C6], T._LocationL());
},
get C3() {
return C[3] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[4] || CT.C4,
[_Location_name]: null,
[_Location_column]: 18,
[_Location_line]: 318,
[_Location_file]: "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/widgets/single_child_scroll_view.dart"
});
},
get C9() {
return C[9] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "axisDirection",
[_Location_column]: 11,
[_Location_line]: 330,
[_Location_file]: null
});
},
get C10() {
return C[10] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "offset",
[_Location_column]: 11,
[_Location_line]: 331,
[_Location_file]: null
});
},
get C11() {
return C[11] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 11,
[_Location_line]: 332,
[_Location_file]: null
});
},
get C12() {
return C[12] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "clipBehavior",
[_Location_column]: 11,
[_Location_line]: 333,
[_Location_file]: null
});
},
get C8() {
return C[8] = dart.constList([C[9] || CT.C9, C[10] || CT.C10, C[11] || CT.C11, C[12] || CT.C12], T._LocationL());
},
get C7() {
return C[7] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[8] || CT.C8,
[_Location_name]: null,
[_Location_column]: 16,
[_Location_line]: 329,
[_Location_file]: "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/widgets/single_child_scroll_view.dart"
});
},
get C15() {
return C[15] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "dragStartBehavior",
[_Location_column]: 7,
[_Location_line]: 323,
[_Location_file]: null
});
},
get C16() {
return C[16] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "axisDirection",
[_Location_column]: 7,
[_Location_line]: 324,
[_Location_file]: null
});
},
get C17() {
return C[17] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "controller",
[_Location_column]: 7,
[_Location_line]: 325,
[_Location_file]: null
});
},
get C18() {
return C[18] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "physics",
[_Location_column]: 7,
[_Location_line]: 326,
[_Location_file]: null
});
},
get C19() {
return C[19] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "restorationId",
[_Location_column]: 7,
[_Location_line]: 327,
[_Location_file]: null
});
},
get C20() {
return C[20] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "viewportBuilder",
[_Location_column]: 7,
[_Location_line]: 328,
[_Location_file]: null
});
},
get C14() {
return C[14] = dart.constList([C[15] || CT.C15, C[16] || CT.C16, C[17] || CT.C17, C[18] || CT.C18, C[19] || CT.C19, C[20] || CT.C20], T._LocationL());
},
get C13() {
return C[13] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[14] || CT.C14,
[_Location_name]: null,
[_Location_column]: 35,
[_Location_line]: 322,
[_Location_file]: "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/widgets/single_child_scroll_view.dart"
});
},
get C23() {
return C[23] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 38,
[_Location_line]: 338,
[_Location_file]: null
});
},
get C22() {
return C[22] = dart.constList([C[23] || CT.C23], T._LocationL());
},
get C21() {
return C[21] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[22] || CT.C22,
[_Location_name]: null,
[_Location_column]: 33,
[_Location_line]: 338,
[_Location_file]: "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/widgets/single_child_scroll_view.dart"
});
},
get C24() {
return C[24] = dart.const({
__proto__: basic_types.AxisDirection.prototype,
[_name]: "AxisDirection.down",
index: 2
});
},
get C25() {
return C[25] = dart.const({
__proto__: basic_types.Axis.prototype,
[_name]: "Axis.horizontal",
index: 0
});
},
get C26() {
return C[26] = dart.const({
__proto__: basic_types.AxisDirection.prototype,
[_name]: "AxisDirection.up",
index: 0
});
},
get C27() {
return C[27] = dart.const({
__proto__: basic_types.AxisDirection.prototype,
[_name]: "AxisDirection.left",
index: 3
});
},
get C28() {
return C[28] = dart.const({
__proto__: basic_types.AxisDirection.prototype,
[_name]: "AxisDirection.right",
index: 1
});
},
get C29() {
return C[29] = dart.const({
__proto__: core.Duration.prototype,
[Duration__duration]: 0
});
},
get C30() {
return C[30] = dart.const({
__proto__: curves.Cubic.prototype,
[Cubic_d]: 1,
[Cubic_c]: 0.25,
[Cubic_b]: 0.1,
[Cubic_a]: 0.25
});
}
}, false);
var C = Array(31).fill(void 0);
var I = [
"file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/widgets/single_child_scroll_view.dart",
"package:flutter/src/widgets/single_child_scroll_view.dart"
];
var scrollDirection$ = dart.privateName(single_child_scroll_view, "SingleChildScrollView.scrollDirection");
var reverse$ = dart.privateName(single_child_scroll_view, "SingleChildScrollView.reverse");
var padding$ = dart.privateName(single_child_scroll_view, "SingleChildScrollView.padding");
var controller$ = dart.privateName(single_child_scroll_view, "SingleChildScrollView.controller");
var primary$ = dart.privateName(single_child_scroll_view, "SingleChildScrollView.primary");
var physics$ = dart.privateName(single_child_scroll_view, "SingleChildScrollView.physics");
var child$ = dart.privateName(single_child_scroll_view, "SingleChildScrollView.child");
var dragStartBehavior$ = dart.privateName(single_child_scroll_view, "SingleChildScrollView.dragStartBehavior");
var clipBehavior$ = dart.privateName(single_child_scroll_view, "SingleChildScrollView.clipBehavior");
var restorationId$ = dart.privateName(single_child_scroll_view, "SingleChildScrollView.restorationId");
var _name = dart.privateName(basic_types, "_name");
var _name$ = dart.privateName(recognizer, "_name");
var _name$0 = dart.privateName(ui, "_name");
var _getDirection = dart.privateName(single_child_scroll_view, "_getDirection");
var _Location_parameterLocations = dart.privateName(widget_inspector, "_Location.parameterLocations");
var _Location_name = dart.privateName(widget_inspector, "_Location.name");
var _Location_column = dart.privateName(widget_inspector, "_Location.column");
var _Location_line = dart.privateName(widget_inspector, "_Location.line");
var _Location_file = dart.privateName(widget_inspector, "_Location.file");
single_child_scroll_view.SingleChildScrollView = class SingleChildScrollView extends framework.StatelessWidget {
get scrollDirection() {
return this[scrollDirection$];
}
set scrollDirection(value) {
super.scrollDirection = value;
}
get reverse() {
return this[reverse$];
}
set reverse(value) {
super.reverse = value;
}
get padding() {
return this[padding$];
}
set padding(value) {
super.padding = value;
}
get controller() {
return this[controller$];
}
set controller(value) {
super.controller = value;
}
get primary() {
return this[primary$];
}
set primary(value) {
super.primary = value;
}
get physics() {
return this[physics$];
}
set physics(value) {
super.physics = value;
}
get child() {
return this[child$];
}
set child(value) {
super.child = value;
}
get dragStartBehavior() {
return this[dragStartBehavior$];
}
set dragStartBehavior(value) {
super.dragStartBehavior = value;
}
get clipBehavior() {
return this[clipBehavior$];
}
set clipBehavior(value) {
super.clipBehavior = value;
}
get restorationId() {
return this[restorationId$];
}
set restorationId(value) {
super.restorationId = value;
}
[_getDirection](context) {
if (context == null) dart.nullFailed(I[0], 309, 44, "context");
return basic.getAxisDirectionFromAxisReverseAndDirectionality(context, this.scrollDirection, this.reverse);
}
build(context) {
if (context == null) dart.nullFailed(I[0], 314, 29, "context");
let axisDirection = this[_getDirection](context);
let contents = this.child;
if (this.padding != null) contents = new basic.Padding.new({padding: dart.nullCheck(this.padding), child: contents, $creationLocationd_0dea112b090073317d4: C[3] || CT.C3});
let scrollController = dart.test(this.primary) ? primary_scroll_controller.PrimaryScrollController.of(context) : this.controller;
let scrollable = new scrollable$.Scrollable.new({dragStartBehavior: this.dragStartBehavior, axisDirection: axisDirection, controller: scrollController, physics: this.physics, restorationId: this.restorationId, viewportBuilder: dart.fn((context, offset) => {
if (context == null) dart.nullFailed(I[0], 328, 38, "context");
if (offset == null) dart.nullFailed(I[0], 328, 62, "offset");
return new single_child_scroll_view._SingleChildViewport.new({axisDirection: axisDirection, offset: offset, child: contents, clipBehavior: this.clipBehavior, $creationLocationd_0dea112b090073317d4: C[7] || CT.C7});
}, T.BuildContextAndViewportOffsetTo_SingleChildViewport()), $creationLocationd_0dea112b090073317d4: C[13] || CT.C13});
return dart.test(this.primary) && scrollController != null ? new primary_scroll_controller.PrimaryScrollController.none({child: scrollable, $creationLocationd_0dea112b090073317d4: C[21] || CT.C21}) : scrollable;
}
};
(single_child_scroll_view.SingleChildScrollView.new = function(opts) {
let t0;
let key = opts && 'key' in opts ? opts.key : null;
let scrollDirection = opts && 'scrollDirection' in opts ? opts.scrollDirection : C[0] || CT.C0;
if (scrollDirection == null) dart.nullFailed(I[0], 214, 10, "scrollDirection");
let reverse = opts && 'reverse' in opts ? opts.reverse : false;
if (reverse == null) dart.nullFailed(I[0], 215, 10, "reverse");
let padding = opts && 'padding' in opts ? opts.padding : null;
let primary = opts && 'primary' in opts ? opts.primary : null;
let physics = opts && 'physics' in opts ? opts.physics : null;
let controller = opts && 'controller' in opts ? opts.controller : null;
let child = opts && 'child' in opts ? opts.child : null;
let dragStartBehavior = opts && 'dragStartBehavior' in opts ? opts.dragStartBehavior : C[1] || CT.C1;
if (dragStartBehavior == null) dart.nullFailed(I[0], 221, 10, "dragStartBehavior");
let clipBehavior = opts && 'clipBehavior' in opts ? opts.clipBehavior : C[2] || CT.C2;
if (clipBehavior == null) dart.nullFailed(I[0], 222, 10, "clipBehavior");
let restorationId = opts && 'restorationId' in opts ? opts.restorationId : null;
let $36creationLocationd_0dea112b090073317d4 = opts && '$creationLocationd_0dea112b090073317d4' in opts ? opts.$creationLocationd_0dea112b090073317d4 : null;
this[scrollDirection$] = scrollDirection;
this[reverse$] = reverse;
this[padding$] = padding;
this[physics$] = physics;
this[controller$] = controller;
this[child$] = child;
this[dragStartBehavior$] = dragStartBehavior;
this[clipBehavior$] = clipBehavior;
this[restorationId$] = restorationId;
if (!(scrollDirection != null)) dart.assertFailed(null, I[0], 224, 15, "scrollDirection != null");
if (!(dragStartBehavior != null)) dart.assertFailed(null, I[0], 225, 15, "dragStartBehavior != null");
if (!(clipBehavior != null)) dart.assertFailed(null, I[0], 226, 15, "clipBehavior != null");
if (!!(controller != null && primary === true)) dart.assertFailed("Primary ScrollViews obtain their ScrollController via inheritance from a PrimaryScrollController widget. " + "You cannot both set primary to true and pass an explicit controller.", I[0], 227, 15, "!(controller != null && primary == true)");
this[primary$] = (t0 = primary, t0 == null ? controller == null && scrollDirection == basic_types.Axis.vertical : t0);
single_child_scroll_view.SingleChildScrollView.__proto__.new.call(this, {key: key, $creationLocationd_0dea112b090073317d4: $36creationLocationd_0dea112b090073317d4});
;
}).prototype = single_child_scroll_view.SingleChildScrollView.prototype;
dart.addTypeTests(single_child_scroll_view.SingleChildScrollView);
dart.addTypeCaches(single_child_scroll_view.SingleChildScrollView);
dart.setMethodSignature(single_child_scroll_view.SingleChildScrollView, () => ({
__proto__: dart.getMethods(single_child_scroll_view.SingleChildScrollView.__proto__),
[_getDirection]: dart.fnType(basic_types.AxisDirection, [framework.BuildContext]),
build: dart.fnType(framework.Widget, [framework.BuildContext])
}));
dart.setLibraryUri(single_child_scroll_view.SingleChildScrollView, I[1]);
dart.setFieldSignature(single_child_scroll_view.SingleChildScrollView, () => ({
__proto__: dart.getFields(single_child_scroll_view.SingleChildScrollView.__proto__),
scrollDirection: dart.finalFieldType(basic_types.Axis),
reverse: dart.finalFieldType(core.bool),
padding: dart.finalFieldType(dart.nullable(edge_insets.EdgeInsetsGeometry)),
controller: dart.finalFieldType(dart.nullable(scroll_controller.ScrollController)),
primary: dart.finalFieldType(core.bool),
physics: dart.finalFieldType(dart.nullable(scroll_physics.ScrollPhysics)),
child: dart.finalFieldType(dart.nullable(framework.Widget)),
dragStartBehavior: dart.finalFieldType(recognizer.DragStartBehavior),
clipBehavior: dart.finalFieldType(ui.Clip),
restorationId: dart.finalFieldType(dart.nullable(core.String))
}));
var axisDirection$ = dart.privateName(single_child_scroll_view, "_SingleChildViewport.axisDirection");
var offset$ = dart.privateName(single_child_scroll_view, "_SingleChildViewport.offset");
var clipBehavior$0 = dart.privateName(single_child_scroll_view, "_SingleChildViewport.clipBehavior");
single_child_scroll_view._SingleChildViewport = class _SingleChildViewport extends framework.SingleChildRenderObjectWidget {
get axisDirection() {
return this[axisDirection$];
}
set axisDirection(value) {
super.axisDirection = value;
}
get offset() {
return this[offset$];
}
set offset(value) {
super.offset = value;
}
get clipBehavior() {
return this[clipBehavior$0];
}
set clipBehavior(value) {
super.clipBehavior = value;
}
createRenderObject(context) {
if (context == null) dart.nullFailed(I[0], 359, 62, "context");
return new single_child_scroll_view._RenderSingleChildViewport.new({axisDirection: this.axisDirection, offset: this.offset, clipBehavior: this.clipBehavior});
}
updateRenderObject(context, renderObject) {
let t0;
if (context == null) dart.nullFailed(I[0], 368, 40, "context");
single_child_scroll_view._RenderSingleChildViewport.as(renderObject);
if (renderObject == null) dart.nullFailed(I[0], 368, 76, "renderObject");
t0 = renderObject;
(() => {
t0.axisDirection = this.axisDirection;
t0.offset = this.offset;
t0.clipBehavior = this.clipBehavior;
return t0;
})();
}
};
(single_child_scroll_view._SingleChildViewport.new = function(opts) {
let key = opts && 'key' in opts ? opts.key : null;
let axisDirection = opts && 'axisDirection' in opts ? opts.axisDirection : C[24] || CT.C24;
if (axisDirection == null) dart.nullFailed(I[0], 346, 10, "axisDirection");
let offset = opts && 'offset' in opts ? opts.offset : null;
if (offset == null) dart.nullFailed(I[0], 347, 19, "offset");
let child = opts && 'child' in opts ? opts.child : null;
let clipBehavior = opts && 'clipBehavior' in opts ? opts.clipBehavior : null;
if (clipBehavior == null) dart.nullFailed(I[0], 349, 19, "clipBehavior");
let $36creationLocationd_0dea112b090073317d4 = opts && '$creationLocationd_0dea112b090073317d4' in opts ? opts.$creationLocationd_0dea112b090073317d4 : null;
this[axisDirection$] = axisDirection;
this[offset$] = offset;
this[clipBehavior$0] = clipBehavior;
if (!(axisDirection != null)) dart.assertFailed(null, I[0], 350, 15, "axisDirection != null");
if (!(clipBehavior != null)) dart.assertFailed(null, I[0], 351, 15, "clipBehavior != null");
single_child_scroll_view._SingleChildViewport.__proto__.new.call(this, {key: key, child: child, $creationLocationd_0dea112b090073317d4: $36creationLocationd_0dea112b090073317d4});
;
}).prototype = single_child_scroll_view._SingleChildViewport.prototype;
dart.addTypeTests(single_child_scroll_view._SingleChildViewport);
dart.addTypeCaches(single_child_scroll_view._SingleChildViewport);
dart.setMethodSignature(single_child_scroll_view._SingleChildViewport, () => ({
__proto__: dart.getMethods(single_child_scroll_view._SingleChildViewport.__proto__),
createRenderObject: dart.fnType(single_child_scroll_view._RenderSingleChildViewport, [framework.BuildContext])
}));
dart.setLibraryUri(single_child_scroll_view._SingleChildViewport, I[1]);
dart.setFieldSignature(single_child_scroll_view._SingleChildViewport, () => ({
__proto__: dart.getFields(single_child_scroll_view._SingleChildViewport.__proto__),
axisDirection: dart.finalFieldType(basic_types.AxisDirection),
offset: dart.finalFieldType(viewport_offset.ViewportOffset),
clipBehavior: dart.finalFieldType(ui.Clip)
}));
var _clipBehavior = dart.privateName(single_child_scroll_view, "_clipBehavior");
var _clipRectLayer = dart.privateName(single_child_scroll_view, "_clipRectLayer");
var _axisDirection = dart.privateName(single_child_scroll_view, "_axisDirection");
var _offset = dart.privateName(single_child_scroll_view, "_offset");
var _cacheExtent = dart.privateName(single_child_scroll_view, "_cacheExtent");
var _hasScrolled = dart.privateName(single_child_scroll_view, "_hasScrolled");
var _viewportExtent = dart.privateName(single_child_scroll_view, "_viewportExtent");
var _minScrollExtent = dart.privateName(single_child_scroll_view, "_minScrollExtent");
var _maxScrollExtent = dart.privateName(single_child_scroll_view, "_maxScrollExtent");
var _getInnerConstraints = dart.privateName(single_child_scroll_view, "_getInnerConstraints");
var _paintOffsetForPosition = dart.privateName(single_child_scroll_view, "_paintOffsetForPosition");
var _paintOffset = dart.privateName(single_child_scroll_view, "_paintOffset");
var _shouldClipAtPaintOffset = dart.privateName(single_child_scroll_view, "_shouldClipAtPaintOffset");
var Duration__duration = dart.privateName(core, "Duration._duration");
var Cubic_d = dart.privateName(curves, "Cubic.d");
var Cubic_c = dart.privateName(curves, "Cubic.c");
var Cubic_b = dart.privateName(curves, "Cubic.b");
var Cubic_a = dart.privateName(curves, "Cubic.a");
const RenderBox_RenderObjectWithChildMixin$36 = class RenderBox_RenderObjectWithChildMixin extends box.RenderBox {};
(RenderBox_RenderObjectWithChildMixin$36.new = function() {
object.RenderObjectWithChildMixin$(box.RenderBox)[dart.mixinNew].call(this);
RenderBox_RenderObjectWithChildMixin$36.__proto__.new.call(this);
}).prototype = RenderBox_RenderObjectWithChildMixin$36.prototype;
dart.applyMixin(RenderBox_RenderObjectWithChildMixin$36, object.RenderObjectWithChildMixin$(box.RenderBox));
single_child_scroll_view._RenderSingleChildViewport = class _RenderSingleChildViewport extends RenderBox_RenderObjectWithChildMixin$36 {
get axisDirection() {
return this[_axisDirection];
}
set axisDirection(value) {
if (value == null) dart.nullFailed(I[0], 397, 35, "value");
if (!(value != null)) dart.assertFailed(null, I[0], 398, 12, "value != null");
if (value == this[_axisDirection]) return;
this[_axisDirection] = value;
this.markNeedsLayout();
}
get axis() {
return basic_types.axisDirectionToAxis(this.axisDirection);
}
get offset() {
return this[_offset];
}
set offset(value) {
if (value == null) dart.nullFailed(I[0], 409, 29, "value");
if (!(value != null)) dart.assertFailed(null, I[0], 410, 12, "value != null");
if (dart.equals(value, this[_offset])) return;
if (dart.test(this.attached)) this[_offset].removeListener(dart.bind(this, _hasScrolled));
this[_offset] = value;
if (dart.test(this.attached)) this[_offset].addListener(dart.bind(this, _hasScrolled));
this.markNeedsLayout();
}
get cacheExtent() {
return this[_cacheExtent];
}
set cacheExtent(value) {
if (value == null) dart.nullFailed(I[0], 424, 26, "value");
if (!(value != null)) dart.assertFailed(null, I[0], 425, 12, "value != null");
if (value == this[_cacheExtent]) return;
this[_cacheExtent] = value;
this.markNeedsLayout();
}
get clipBehavior() {
return this[_clipBehavior];
}
set clipBehavior(value) {
if (value == null) dart.nullFailed(I[0], 437, 25, "value");
if (!(value != null)) dart.assertFailed(null, I[0], 438, 12, "value != null");
if (value != this[_clipBehavior]) {
this[_clipBehavior] = value;
this.markNeedsPaint();
this.markNeedsSemanticsUpdate();
}
}
[_hasScrolled]() {
this.markNeedsPaint();
this.markNeedsSemanticsUpdate();
}
setupParentData(child) {
object.RenderObject.as(child);
if (child == null) dart.nullFailed(I[0], 452, 37, "child");
if (!object.ParentData.is(child.parentData)) child.parentData = new object.ParentData.new();
}
attach(owner) {
object.PipelineOwner.as(owner);
if (owner == null) dart.nullFailed(I[0], 460, 29, "owner");
super.attach(owner);
this[_offset].addListener(dart.bind(this, _hasScrolled));
}
detach() {
this[_offset].removeListener(dart.bind(this, _hasScrolled));
super.detach();
}
get isRepaintBoundary() {
return true;
}
get [_viewportExtent]() {
if (!dart.test(this.hasSize)) dart.assertFailed(null, I[0], 475, 12, "hasSize");
switch (this.axis) {
case C[25] || CT.C25:
{
return this.size.width;
}
case C[0] || CT.C0:
{
return this.size.height;
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
}
get [_minScrollExtent]() {
if (!dart.test(this.hasSize)) dart.assertFailed(null, I[0], 485, 12, "hasSize");
return 0.0;
}
get [_maxScrollExtent]() {
if (!dart.test(this.hasSize)) dart.assertFailed(null, I[0], 490, 12, "hasSize");
if (this.child == null) return 0.0;
switch (this.axis) {
case C[25] || CT.C25:
{
return math.max(core.double, 0.0, dart.notNull(dart.nullCheck(this.child).size.width) - dart.notNull(this.size.width));
}
case C[0] || CT.C0:
{
return math.max(core.double, 0.0, dart.notNull(dart.nullCheck(this.child).size.height) - dart.notNull(this.size.height));
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
}
[_getInnerConstraints](constraints) {
if (constraints == null) dart.nullFailed(I[0], 501, 54, "constraints");
switch (this.axis) {
case C[25] || CT.C25:
{
return constraints.heightConstraints();
}
case C[0] || CT.C0:
{
return constraints.widthConstraints();
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
}
computeMinIntrinsicWidth(height) {
if (height == null) dart.nullFailed(I[0], 511, 42, "height");
if (this.child != null) return dart.nullCheck(this.child).getMinIntrinsicWidth(height);
return 0.0;
}
computeMaxIntrinsicWidth(height) {
if (height == null) dart.nullFailed(I[0], 518, 42, "height");
if (this.child != null) return dart.nullCheck(this.child).getMaxIntrinsicWidth(height);
return 0.0;
}
computeMinIntrinsicHeight(width) {
if (width == null) dart.nullFailed(I[0], 525, 43, "width");
if (this.child != null) return dart.nullCheck(this.child).getMinIntrinsicHeight(width);
return 0.0;
}
computeMaxIntrinsicHeight(width) {
if (width == null) dart.nullFailed(I[0], 532, 43, "width");
if (this.child != null) return dart.nullCheck(this.child).getMaxIntrinsicHeight(width);
return 0.0;
}
computeDryLayout(constraints) {
if (constraints == null) dart.nullFailed(I[0], 544, 40, "constraints");
if (this.child == null) {
return constraints.smallest;
}
let childSize = dart.nullCheck(this.child).getDryLayout(this[_getInnerConstraints](constraints));
return constraints.constrain(childSize);
}
performLayout() {
let constraints = this.constraints;
if (this.child == null) {
this.size = constraints.smallest;
} else {
dart.nullCheck(this.child).layout(this[_getInnerConstraints](constraints), {parentUsesSize: true});
this.size = constraints.constrain(dart.nullCheck(this.child).size);
}
this.offset.applyViewportDimension(this[_viewportExtent]);
this.offset.applyContentDimensions(this[_minScrollExtent], this[_maxScrollExtent]);
}
get [_paintOffset]() {
return this[_paintOffsetForPosition](this.offset.pixels);
}
[_paintOffsetForPosition](position) {
if (position == null) dart.nullFailed(I[0], 568, 41, "position");
if (!(this.axisDirection != null)) dart.assertFailed(null, I[0], 569, 12, "axisDirection != null");
switch (this.axisDirection) {
case C[26] || CT.C26:
{
return new ui.Offset.new(0.0, dart.notNull(position) - dart.notNull(dart.nullCheck(this.child).size.height) + dart.notNull(this.size.height));
}
case C[24] || CT.C24:
{
return new ui.Offset.new(0.0, -dart.notNull(position));
}
case C[27] || CT.C27:
{
return new ui.Offset.new(dart.notNull(position) - dart.notNull(dart.nullCheck(this.child).size.width) + dart.notNull(this.size.width), 0.0);
}
case C[28] || CT.C28:
{
return new ui.Offset.new(-dart.notNull(position), 0.0);
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
}
[_shouldClipAtPaintOffset](paintOffset) {
if (paintOffset == null) dart.nullFailed(I[0], 582, 40, "paintOffset");
if (!(this.child != null)) dart.assertFailed(null, I[0], 583, 12, "child != null");
return dart.notNull(paintOffset.dx) < 0 || dart.notNull(paintOffset.dy) < 0 || dart.notNull(paintOffset.dx) + dart.notNull(dart.nullCheck(this.child).size.width) > dart.notNull(this.size.width) || dart.notNull(paintOffset.dy) + dart.notNull(dart.nullCheck(this.child).size.height) > dart.notNull(this.size.height);
}
paint(context, offset) {
if (context == null) dart.nullFailed(I[0], 591, 30, "context");
if (offset == null) dart.nullFailed(I[0], 591, 46, "offset");
if (this.child != null) {
let paintOffset = this[_paintOffset];
const paintContents = (context, offset) => {
if (context == null) dart.nullFailed(I[0], 595, 42, "context");
if (offset == null) dart.nullFailed(I[0], 595, 58, "offset");
context.paintChild(dart.nullCheck(this.child), offset['+'](paintOffset));
};
dart.fn(paintContents, T.PaintingContextAndOffsetTovoid());
if (dart.test(this[_shouldClipAtPaintOffset](paintOffset)) && this.clipBehavior != ui.Clip.none) {
this[_clipRectLayer] = context.pushClipRect(this.needsCompositing, offset, ui.Offset.zero['&'](this.size), paintContents, {clipBehavior: this.clipBehavior, oldLayer: this[_clipRectLayer]});
} else {
this[_clipRectLayer] = null;
paintContents(context, offset);
}
}
}
applyPaintTransform(child, transform) {
box.RenderBox.as(child);
if (child == null) dart.nullFailed(I[0], 612, 38, "child");
if (transform == null) dart.nullFailed(I[0], 612, 53, "transform");
let paintOffset = this[_paintOffset];
transform.translate(paintOffset.dx, paintOffset.dy);
}
describeApproximatePaintClip(child) {
T.RenderObjectN().as(child);
if (child != null && dart.test(this[_shouldClipAtPaintOffset](this[_paintOffset]))) return ui.Offset.zero['&'](this.size);
return null;
}
hitTestChildren(result, opts) {
if (result == null) dart.nullFailed(I[0], 625, 41, "result");
let position = opts && 'position' in opts ? opts.position : null;
if (position == null) dart.nullFailed(I[0], 625, 67, "position");
if (this.child != null) {
return result.addWithPaintOffset({offset: this[_paintOffset], position: position, hitTest: dart.fn((result, transformed) => {
if (result == null) dart.nullFailed(I[0], 630, 36, "result");
if (!dart.equals(transformed, position['+'](this[_paintOffset]._negate()))) dart.assertFailed(null, I[0], 631, 18, "transformed == position + -_paintOffset");
return dart.nullCheck(this.child).hitTest(result, {position: dart.nullCheck(transformed)});
}, T.BoxHitTestResultAndOffsetNTobool())});
}
return false;
}
getOffsetToReveal(target, alignment, opts) {
if (target == null) dart.nullFailed(I[0], 640, 49, "target");
if (alignment == null) dart.nullFailed(I[0], 640, 64, "alignment");
let rect = opts && 'rect' in opts ? opts.rect : null;
rect == null ? rect = target.paintBounds : null;
if (!box.RenderBox.is(target)) return new viewport.RevealedOffset.new({offset: this.offset.pixels, rect: rect});
let targetBox = target;
let transform = targetBox.getTransformTo(this.child);
let bounds = matrix_utils.MatrixUtils.transformRect(transform, rect);
let contentSize = dart.nullCheck(this.child).size;
let leadingScrollOffset = null;
let targetMainAxisExtent = null;
let mainAxisExtent = null;
if (!(this.axisDirection != null)) dart.assertFailed(null, I[0], 654, 12, "axisDirection != null");
switch (this.axisDirection) {
case C[26] || CT.C26:
{
mainAxisExtent = this.size.height;
leadingScrollOffset = dart.notNull(contentSize.height) - dart.notNull(bounds.bottom);
targetMainAxisExtent = bounds.height;
break;
}
case C[28] || CT.C28:
{
mainAxisExtent = this.size.width;
leadingScrollOffset = bounds.left;
targetMainAxisExtent = bounds.width;
break;
}
case C[24] || CT.C24:
{
mainAxisExtent = this.size.height;
leadingScrollOffset = bounds.top;
targetMainAxisExtent = bounds.height;
break;
}
case C[27] || CT.C27:
{
mainAxisExtent = this.size.width;
leadingScrollOffset = dart.notNull(contentSize.width) - dart.notNull(bounds.right);
targetMainAxisExtent = bounds.width;
break;
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
let targetOffset = dart.notNull(leadingScrollOffset) - (dart.notNull(mainAxisExtent) - dart.notNull(targetMainAxisExtent)) * dart.notNull(alignment);
let targetRect = bounds.shift(this[_paintOffsetForPosition](targetOffset));
return new viewport.RevealedOffset.new({offset: targetOffset, rect: targetRect});
}
showOnScreen(opts) {
let descendant = opts && 'descendant' in opts ? opts.descendant : null;
let rect = opts && 'rect' in opts ? opts.rect : null;
let duration = opts && 'duration' in opts ? opts.duration : C[29] || CT.C29;
if (duration == null) dart.nullFailed(I[0], 687, 14, "duration");
let curve = opts && 'curve' in opts ? opts.curve : C[30] || CT.C30;
if (curve == null) dart.nullFailed(I[0], 688, 11, "curve");
if (!dart.test(this.offset.allowImplicitScrolling)) {
return super.showOnScreen({descendant: descendant, rect: rect, duration: duration, curve: curve});
}
let newRect = viewport.RenderViewportBase.showInViewport({descendant: descendant, viewport: this, offset: this.offset, rect: rect, duration: duration, curve: curve});
super.showOnScreen({rect: newRect, duration: duration, curve: curve});
}
describeSemanticsClip(child) {
object.RenderObject.as(child);
if (child == null) dart.nullFailed(I[0], 715, 43, "child");
if (!(this.axis != null)) dart.assertFailed(null, I[0], 716, 12, "axis != null");
switch (this.axis) {
case C[0] || CT.C0:
{
return new ui.Rect.fromLTRB(this.semanticBounds.left, dart.notNull(this.semanticBounds.top) - dart.notNull(this.cacheExtent), this.semanticBounds.right, dart.notNull(this.semanticBounds.bottom) + dart.notNull(this.cacheExtent));
}
case C[25] || CT.C25:
{
return new ui.Rect.fromLTRB(dart.notNull(this.semanticBounds.left) - dart.notNull(this.cacheExtent), this.semanticBounds.top, dart.notNull(this.semanticBounds.right) + dart.notNull(this.cacheExtent), this.semanticBounds.bottom);
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
}
};
(single_child_scroll_view._RenderSingleChildViewport.new = function(opts) {
let axisDirection = opts && 'axisDirection' in opts ? opts.axisDirection : C[24] || CT.C24;
if (axisDirection == null) dart.nullFailed(I[0], 379, 19, "axisDirection");
let offset = opts && 'offset' in opts ? opts.offset : null;
if (offset == null) dart.nullFailed(I[0], 380, 29, "offset");
let cacheExtent = opts && 'cacheExtent' in opts ? opts.cacheExtent : 250;
if (cacheExtent == null) dart.nullFailed(I[0], 381, 12, "cacheExtent");
let child = opts && 'child' in opts ? opts.child : null;
let clipBehavior = opts && 'clipBehavior' in opts ? opts.clipBehavior : null;
if (clipBehavior == null) dart.nullFailed(I[0], 383, 19, "clipBehavior");
this[_clipBehavior] = ui.Clip.none;
this[_clipRectLayer] = null;
if (!(axisDirection != null)) dart.assertFailed(null, I[0], 384, 15, "axisDirection != null");
if (!(offset != null)) dart.assertFailed(null, I[0], 385, 15, "offset != null");
if (!(cacheExtent != null)) dart.assertFailed(null, I[0], 386, 15, "cacheExtent != null");
if (!(clipBehavior != null)) dart.assertFailed(null, I[0], 387, 15, "clipBehavior != null");
this[_axisDirection] = axisDirection;
this[_offset] = offset;
this[_cacheExtent] = cacheExtent;
this[_clipBehavior] = clipBehavior;
single_child_scroll_view._RenderSingleChildViewport.__proto__.new.call(this);
this.child = child;
}).prototype = single_child_scroll_view._RenderSingleChildViewport.prototype;
dart.addTypeTests(single_child_scroll_view._RenderSingleChildViewport);
dart.addTypeCaches(single_child_scroll_view._RenderSingleChildViewport);
single_child_scroll_view._RenderSingleChildViewport[dart.implements] = () => [viewport.RenderAbstractViewport];
dart.setMethodSignature(single_child_scroll_view._RenderSingleChildViewport, () => ({
__proto__: dart.getMethods(single_child_scroll_view._RenderSingleChildViewport.__proto__),
[_hasScrolled]: dart.fnType(dart.void, []),
[_getInnerConstraints]: dart.fnType(box.BoxConstraints, [box.BoxConstraints]),
[_paintOffsetForPosition]: dart.fnType(ui.Offset, [core.double]),
[_shouldClipAtPaintOffset]: dart.fnType(core.bool, [ui.Offset]),
getOffsetToReveal: dart.fnType(viewport.RevealedOffset, [object.RenderObject, core.double], {rect: dart.nullable(ui.Rect)}, {}),
describeSemanticsClip: dart.fnType(ui.Rect, [dart.nullable(core.Object)])
}));
dart.setGetterSignature(single_child_scroll_view._RenderSingleChildViewport, () => ({
__proto__: dart.getGetters(single_child_scroll_view._RenderSingleChildViewport.__proto__),
axisDirection: basic_types.AxisDirection,
axis: basic_types.Axis,
offset: viewport_offset.ViewportOffset,
cacheExtent: core.double,
clipBehavior: ui.Clip,
[_viewportExtent]: core.double,
[_minScrollExtent]: core.double,
[_maxScrollExtent]: core.double,
[_paintOffset]: ui.Offset
}));
dart.setSetterSignature(single_child_scroll_view._RenderSingleChildViewport, () => ({
__proto__: dart.getSetters(single_child_scroll_view._RenderSingleChildViewport.__proto__),
axisDirection: basic_types.AxisDirection,
offset: viewport_offset.ViewportOffset,
cacheExtent: core.double,
clipBehavior: ui.Clip
}));
dart.setLibraryUri(single_child_scroll_view._RenderSingleChildViewport, I[1]);
dart.setFieldSignature(single_child_scroll_view._RenderSingleChildViewport, () => ({
__proto__: dart.getFields(single_child_scroll_view._RenderSingleChildViewport.__proto__),
[_axisDirection]: dart.fieldType(basic_types.AxisDirection),
[_offset]: dart.fieldType(viewport_offset.ViewportOffset),
[_cacheExtent]: dart.fieldType(core.double),
[_clipBehavior]: dart.fieldType(ui.Clip),
[_clipRectLayer]: dart.fieldType(dart.nullable(layer.ClipRectLayer))
}));
dart.trackLibraries("packages/flutter/src/widgets/single_child_scroll_view.dart", {
"package:flutter/src/widgets/single_child_scroll_view.dart": single_child_scroll_view
}, {
}, '{"version":3,"sourceRoot":"","sources":["single_child_scroll_view.dart"],"names":[],"mappings":"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","file":"../../../../../../../../../../../packages/flutter/src/widgets/single_child_scroll_view.dart.lib.js"}');
// Exports:
return {
src__widgets__single_child_scroll_view: single_child_scroll_view
};
}));
//# sourceMappingURL=single_child_scroll_view.dart.lib.js.map
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
define(['dart_sdk', 'packages/flutter/src/widgets/widget_span.dart', 'packages/flutter/src/painting/edge_insets.dart', 'packages/flutter/src/widgets/icon.dart', 'packages/flutter/src/rendering/paragraph.dart', 'packages/flutter/src/painting/strut_style.dart', 'packages/flutter/src/material/colors.dart', 'packages/flutter/src/rendering/flex.dart', 'packages/flutter/src/widgets/icon_data.dart'], (function load__packages__dashboard__ui__graphs__community__node_community_dart(dart_sdk, packages__flutter__src__widgets__widget_span$46dart, packages__flutter__src__painting__edge_insets$46dart, packages__flutter__src__widgets__icon$46dart, packages__flutter__src__rendering__paragraph$46dart, packages__flutter__src__painting__strut_style$46dart, packages__flutter__src__material__colors$46dart, packages__flutter__src__rendering__flex$46dart, packages__flutter__src__widgets__icon_data$46dart) {
'use strict';
const core = dart_sdk.core;
const ui = dart_sdk.ui;
const _interceptors = dart_sdk._interceptors;
const dart = dart_sdk.dart;
const dartx = dart_sdk.dartx;
const basic = packages__flutter__src__widgets__widget_span$46dart.src__widgets__basic;
const framework = packages__flutter__src__widgets__widget_span$46dart.src__widgets__framework;
const widget_inspector = packages__flutter__src__widgets__widget_span$46dart.src__widgets__widget_inspector;
const text = packages__flutter__src__widgets__widget_span$46dart.src__widgets__text;
const edge_insets = packages__flutter__src__painting__edge_insets$46dart.src__painting__edge_insets;
const icon = packages__flutter__src__widgets__icon$46dart.src__widgets__icon;
const paragraph = packages__flutter__src__rendering__paragraph$46dart.src__rendering__paragraph;
const text_style = packages__flutter__src__painting__strut_style$46dart.src__painting__text_style;
const colors = packages__flutter__src__material__colors$46dart.src__material__colors;
const flex = packages__flutter__src__rendering__flex$46dart.src__rendering__flex;
const icon_data = packages__flutter__src__widgets__icon_data$46dart.src__widgets__icon_data;
var node_community = Object.create(dart.library);
var $add = dartx.add;
var $roundToDouble = dartx.roundToDouble;
var $toString = dartx.toString;
dart._checkModuleNullSafetyMode(false);
var T = {
WidgetL: () => (T.WidgetL = dart.constFn(dart.legacy(framework.Widget)))(),
JSArrayOfWidgetL: () => (T.JSArrayOfWidgetL = dart.constFn(_interceptors.JSArray$(T.WidgetL())))(),
_LocationL: () => (T._LocationL = dart.constFn(dart.legacy(widget_inspector._Location)))()
};
var T$Eval = Object.assign({
_: () => T$Eval
}, T);
var S = {
_: () => S
};
var S$Eval = Object.assign({
_: () => S$Eval
}, S);
const CT = Object.create({
_: () => (C, CT)
});
dart.defineLazy(CT, {
get C0() {
return C[0] = dart.const({
__proto__: ui.Color.prototype,
[Color_value]: 4278190080.0
});
},
get C1() {
return C[1] = dart.const({
__proto__: edge_insets.EdgeInsets.prototype,
[EdgeInsets_bottom]: 8,
[EdgeInsets_right]: 8,
[EdgeInsets_top]: 8,
[EdgeInsets_left]: 8
});
},
get C4() {
return C[4] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "icon",
[_Location_column]: 15,
[_Location_line]: 20,
[_Location_file]: null
});
},
get C5() {
return C[5] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "color",
[_Location_column]: 15,
[_Location_line]: 21,
[_Location_file]: null
});
},
get C3() {
return C[3] = dart.constList([C[4] || CT.C4, C[5] || CT.C5], T._LocationL());
},
get C2() {
return C[2] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[3] || CT.C3,
[_Location_name]: null,
[_Location_column]: 13,
[_Location_line]: 19,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/graphs/community/node_community.dart"
});
},
get C8() {
return C[8] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "width",
[_Location_column]: 38,
[_Location_line]: 23,
[_Location_file]: null
});
},
get C7() {
return C[7] = dart.constList([C[8] || CT.C8], T._LocationL());
},
get C6() {
return C[6] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[7] || CT.C7,
[_Location_name]: null,
[_Location_column]: 29,
[_Location_line]: 23,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/graphs/community/node_community.dart"
});
},
get C11() {
return C[11] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "data",
[_Location_column]: 15,
[_Location_line]: 26,
[_Location_file]: null
});
},
get C12() {
return C[12] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "overflow",
[_Location_column]: 15,
[_Location_line]: 27,
[_Location_file]: null
});
},
get C13() {
return C[13] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "style",
[_Location_column]: 15,
[_Location_line]: 28,
[_Location_file]: null
});
},
get C10() {
return C[10] = dart.constList([C[11] || CT.C11, C[12] || CT.C12, C[13] || CT.C13], T._LocationL());
},
get C9() {
return C[9] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[10] || CT.C10,
[_Location_name]: null,
[_Location_column]: 20,
[_Location_line]: 25,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/graphs/community/node_community.dart"
});
},
get C16() {
return C[16] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 13,
[_Location_line]: 25,
[_Location_file]: null
});
},
get C15() {
return C[15] = dart.constList([C[16] || CT.C16], T._LocationL());
},
get C14() {
return C[14] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[15] || CT.C15,
[_Location_name]: null,
[_Location_column]: 11,
[_Location_line]: 24,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/graphs/community/node_community.dart"
});
},
get C19() {
return C[19] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "data",
[_Location_column]: 59,
[_Location_line]: 35,
[_Location_file]: null
});
},
get C20() {
return C[20] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "style",
[_Location_column]: 13,
[_Location_line]: 36,
[_Location_file]: null
});
},
get C18() {
return C[18] = dart.constList([C[19] || CT.C19, C[20] || CT.C20], T._LocationL());
},
get C17() {
return C[17] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[18] || CT.C18,
[_Location_name]: null,
[_Location_column]: 11,
[_Location_line]: 34,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/graphs/community/node_community.dart"
});
},
get C23() {
return C[23] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "children",
[_Location_column]: 9,
[_Location_line]: 17,
[_Location_file]: null
});
},
get C24() {
return C[24] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "mainAxisAlignment",
[_Location_column]: 9,
[_Location_line]: 42,
[_Location_file]: null
});
},
get C22() {
return C[22] = dart.constList([C[23] || CT.C23, C[24] || CT.C24], T._LocationL());
},
get C21() {
return C[21] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[22] || CT.C22,
[_Location_name]: null,
[_Location_column]: 14,
[_Location_line]: 16,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/graphs/community/node_community.dart"
});
},
get C27() {
return C[27] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "padding",
[_Location_column]: 7,
[_Location_line]: 15,
[_Location_file]: null
});
},
get C28() {
return C[28] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 7,
[_Location_line]: 16,
[_Location_file]: null
});
},
get C26() {
return C[26] = dart.constList([C[27] || CT.C27, C[28] || CT.C28], T._LocationL());
},
get C25() {
return C[25] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[26] || CT.C26,
[_Location_name]: null,
[_Location_column]: 12,
[_Location_line]: 14,
[_Location_file]: "file:///C:/Users/Luca/Documents/GitProjects/smart/src/dashboard/lib/ui/graphs/community/node_community.dart"
});
}
}, false);
var C = Array(29).fill(void 0);
var I = ["package:dashboard/ui/graphs/community/node_community.dart"];
var label$ = dart.privateName(node_community, "TrustScoreNode.label");
var trustValue$ = dart.privateName(node_community, "TrustScoreNode.trustValue");
var textColor$ = dart.privateName(node_community, "TrustScoreNode.textColor");
var icon$ = dart.privateName(node_community, "TrustScoreNode.icon");
var Color_value = dart.privateName(ui, "Color.value");
var EdgeInsets_bottom = dart.privateName(edge_insets, "EdgeInsets.bottom");
var EdgeInsets_right = dart.privateName(edge_insets, "EdgeInsets.right");
var EdgeInsets_top = dart.privateName(edge_insets, "EdgeInsets.top");
var EdgeInsets_left = dart.privateName(edge_insets, "EdgeInsets.left");
var _Location_parameterLocations = dart.privateName(widget_inspector, "_Location.parameterLocations");
var _Location_name = dart.privateName(widget_inspector, "_Location.name");
var _Location_column = dart.privateName(widget_inspector, "_Location.column");
var _Location_line = dart.privateName(widget_inspector, "_Location.line");
var _Location_file = dart.privateName(widget_inspector, "_Location.file");
node_community.TrustScoreNode = class TrustScoreNode extends framework.StatelessWidget {
get label() {
return this[label$];
}
set label(value) {
super.label = value;
}
get trustValue() {
return this[trustValue$];
}
set trustValue(value) {
super.trustValue = value;
}
get textColor() {
return this[textColor$];
}
set textColor(value) {
super.textColor = value;
}
get icon() {
return this[icon$];
}
set icon(value) {
super.icon = value;
}
build(context) {
return new basic.Padding.new({padding: C[1] || CT.C1, child: new basic.Row.new({children: (() => {
let t0 = T.JSArrayOfWidgetL().of([]);
if (this.icon != null) t0[$add](new icon.Icon.new(this.icon, {color: this.textColor, $creationLocationd_0dea112b090073317d4: C[2] || CT.C2}));
if (this.icon != null) t0[$add](new basic.SizedBox.new({width: 4.0, $creationLocationd_0dea112b090073317d4: C[6] || CT.C6}));
t0[$add](new basic.Expanded.new({child: new text.Text.new(this.label, {overflow: paragraph.TextOverflow.ellipsis, style: new text_style.TextStyle.new({fontWeight: ui.FontWeight.bold, color: this.textColor}), $creationLocationd_0dea112b090073317d4: C[9] || CT.C9}), $creationLocationd_0dea112b090073317d4: C[14] || CT.C14}));
t0[$add](new text.Text.new((dart.notNull(this.trustValue) * 100)[$roundToDouble]()[$toString]() + "%", {style: new text_style.TextStyle.new({fontWeight: ui.FontWeight.bold, color: colors.Colors.green}), $creationLocationd_0dea112b090073317d4: C[17] || CT.C17}));
return t0;
})(), mainAxisAlignment: flex.MainAxisAlignment.spaceBetween, $creationLocationd_0dea112b090073317d4: C[21] || CT.C21}), $creationLocationd_0dea112b090073317d4: C[25] || CT.C25});
}
};
(node_community.TrustScoreNode.new = function(label, trustValue, opts) {
let textColor = opts && 'textColor' in opts ? opts.textColor : C[0] || CT.C0;
let icon = opts && 'icon' in opts ? opts.icon : null;
let $36creationLocationd_0dea112b090073317d4 = opts && '$creationLocationd_0dea112b090073317d4' in opts ? opts.$creationLocationd_0dea112b090073317d4 : null;
this[label$] = label;
this[trustValue$] = trustValue;
this[textColor$] = textColor;
this[icon$] = icon;
node_community.TrustScoreNode.__proto__.new.call(this, {$creationLocationd_0dea112b090073317d4: $36creationLocationd_0dea112b090073317d4});
;
}).prototype = node_community.TrustScoreNode.prototype;
dart.addTypeTests(node_community.TrustScoreNode);
dart.addTypeCaches(node_community.TrustScoreNode);
dart.setMethodSignature(node_community.TrustScoreNode, () => ({
__proto__: dart.getMethods(node_community.TrustScoreNode.__proto__),
build: dart.fnType(dart.legacy(framework.Widget), [dart.legacy(framework.BuildContext)])
}));
dart.setLibraryUri(node_community.TrustScoreNode, I[0]);
dart.setFieldSignature(node_community.TrustScoreNode, () => ({
__proto__: dart.getFields(node_community.TrustScoreNode.__proto__),
label: dart.finalFieldType(dart.legacy(core.String)),
trustValue: dart.finalFieldType(dart.legacy(core.double)),
textColor: dart.finalFieldType(dart.legacy(ui.Color)),
icon: dart.finalFieldType(dart.legacy(icon_data.IconData))
}));
dart.trackLibraries("packages/dashboard/ui/graphs/community/node_community.dart", {
"package:dashboard/ui/graphs/community/node_community.dart": node_community
}, {
}, '{"version":3,"sourceRoot":"","sources":["node_community.dart"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAGe;;;;;;IACA;;;;;;IACD;;;;;;IACG;;;;;;UAMW;AACxB,YAAO,uDAEE,6BACK;;AACR,gBAAI,AAAK,mBACP,2BACE,mBACO;AAEX,gBAAI,AAAK,mBAAS,wCAAgB;AAClC,oDACS,kBACL,uBACuB,wCAChB,0CACkB,2BAChB;AAIb,uCACqB,AAAgB,AAAW,CAAlC,aAAX,mBAAa,sCAAkC,aACzC,0CACkB,2BACT;;mCAIiB;IAG3C;;gDApCoB,OAAY;QACtB;QAA+B;;IADrB;IAAY;IACtB;IAA+B;AADzC;;EAC+C","file":"../../../../../../../../../../../packages/dashboard/ui/graphs/community/node_community.dart.lib.js"}');
// Exports:
return {
ui__graphs__community__node_community: node_community
};
}));
//# sourceMappingURL=node_community.dart.lib.js.map
This source diff could not be displayed because it is too large. You can view the blob instead.
define(['dart_sdk', 'packages/flutter/src/widgets/widget_span.dart', 'packages/flutter/src/widgets/icon_theme.dart', 'packages/flutter/src/rendering/paragraph.dart', 'packages/flutter/src/painting/placeholder_span.dart', 'packages/flutter/src/painting/strut_style.dart', 'packages/vector_math/vector_math_64.dart', 'packages/flutter/src/painting/alignment.dart', 'packages/flutter/src/widgets/icon_data.dart', 'packages/flutter/src/foundation/debug.dart', 'packages/flutter/src/painting/colors.dart'], (function load__packages__flutter__src__widgets__icon_dart(dart_sdk, packages__flutter__src__widgets__widget_span$46dart, packages__flutter__src__widgets__icon_theme$46dart, packages__flutter__src__rendering__paragraph$46dart, packages__flutter__src__painting__placeholder_span$46dart, packages__flutter__src__painting__strut_style$46dart, packages__vector_math__vector_math_64$46dart, packages__flutter__src__painting__alignment$46dart, packages__flutter__src__widgets__icon_data$46dart, packages__flutter__src__foundation__debug$46dart, packages__flutter__src__painting__colors$46dart) {
'use strict';
const core = dart_sdk.core;
const ui = dart_sdk.ui;
const _internal = dart_sdk._internal;
const dart = dart_sdk.dart;
const dartx = dart_sdk.dartx;
const debug = packages__flutter__src__widgets__widget_span$46dart.src__widgets__debug;
const basic = packages__flutter__src__widgets__widget_span$46dart.src__widgets__basic;
const widget_inspector = packages__flutter__src__widgets__widget_span$46dart.src__widgets__widget_inspector;
const framework = packages__flutter__src__widgets__widget_span$46dart.src__widgets__framework;
const icon_theme = packages__flutter__src__widgets__icon_theme$46dart.src__widgets__icon_theme;
const paragraph = packages__flutter__src__rendering__paragraph$46dart.src__rendering__paragraph;
const text_span = packages__flutter__src__painting__placeholder_span$46dart.src__painting__text_span;
const text_style = packages__flutter__src__painting__strut_style$46dart.src__painting__text_style;
const vector_math_64 = packages__vector_math__vector_math_64$46dart.vector_math_64;
const alignment = packages__flutter__src__painting__alignment$46dart.src__painting__alignment;
const icon_data = packages__flutter__src__widgets__icon_data$46dart.src__widgets__icon_data;
const diagnostics = packages__flutter__src__foundation__debug$46dart.src__foundation__diagnostics;
const colors = packages__flutter__src__painting__colors$46dart.src__painting__colors;
var icon$ = Object.create(dart.library);
dart._checkModuleNullSafetyMode(false);
var T = {
_LocationL: () => (T._LocationL = dart.constFn(dart.legacy(widget_inspector._Location)))()
};
var T$Eval = Object.assign({
_: () => T$Eval
}, T);
var S = {
_: () => S
};
var S$Eval = Object.assign({
_: () => S$Eval
}, S);
const CT = Object.create({
_: () => (C, CT)
});
dart.defineLazy(CT, {
get C2() {
return C[2] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "width",
[_Location_column]: 25,
[_Location_line]: 164,
[_Location_file]: null
});
},
get C3() {
return C[3] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "height",
[_Location_column]: 42,
[_Location_line]: 164,
[_Location_file]: null
});
},
get C1() {
return C[1] = dart.constList([C[2] || CT.C2, C[3] || CT.C3], T._LocationL());
},
get C0() {
return C[0] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[1] || CT.C1,
[_Location_name]: null,
[_Location_column]: 16,
[_Location_line]: 164,
[_Location_file]: "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/widgets/icon.dart"
});
},
get C6() {
return C[6] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "label",
[_Location_column]: 9,
[_Location_line]: 163,
[_Location_file]: null
});
},
get C7() {
return C[7] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 9,
[_Location_line]: 164,
[_Location_file]: null
});
},
get C5() {
return C[5] = dart.constList([C[6] || CT.C6, C[7] || CT.C7], T._LocationL());
},
get C4() {
return C[4] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[5] || CT.C5,
[_Location_name]: null,
[_Location_column]: 14,
[_Location_line]: 162,
[_Location_file]: "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/widgets/icon.dart"
});
},
get C10() {
return C[10] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "overflow",
[_Location_column]: 7,
[_Location_line]: 174,
[_Location_file]: null
});
},
get C11() {
return C[11] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "textDirection",
[_Location_column]: 7,
[_Location_line]: 175,
[_Location_file]: null
});
},
get C12() {
return C[12] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "text",
[_Location_column]: 7,
[_Location_line]: 176,
[_Location_file]: null
});
},
get C9() {
return C[9] = dart.constList([C[10] || CT.C10, C[11] || CT.C11, C[12] || CT.C12], T._LocationL());
},
get C8() {
return C[8] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[9] || CT.C9,
[_Location_name]: null,
[_Location_column]: 25,
[_Location_line]: 173,
[_Location_file]: "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/widgets/icon.dart"
});
},
get C15() {
return C[15] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "transform",
[_Location_column]: 13,
[_Location_line]: 192,
[_Location_file]: null
});
},
get C16() {
return C[16] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "alignment",
[_Location_column]: 13,
[_Location_line]: 193,
[_Location_file]: null
});
},
get C17() {
return C[17] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "transformHitTests",
[_Location_column]: 13,
[_Location_line]: 194,
[_Location_file]: null
});
},
get C18() {
return C[18] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 13,
[_Location_line]: 195,
[_Location_file]: null
});
},
get C14() {
return C[14] = dart.constList([C[15] || CT.C15, C[16] || CT.C16, C[17] || CT.C17, C[18] || CT.C18], T._LocationL());
},
get C13() {
return C[13] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[14] || CT.C14,
[_Location_name]: null,
[_Location_column]: 24,
[_Location_line]: 191,
[_Location_file]: "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/widgets/icon.dart"
});
},
get C19() {
return C[19] = dart.const({
__proto__: ui.TextDirection.prototype,
[_name]: "TextDirection.rtl",
index: 0
});
},
get C20() {
return C[20] = dart.const({
__proto__: ui.TextDirection.prototype,
[_name]: "TextDirection.ltr",
index: 1
});
},
get C23() {
return C[23] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 13,
[_Location_line]: 210,
[_Location_file]: null
});
},
get C22() {
return C[22] = dart.constList([C[23] || CT.C23], T._LocationL());
},
get C21() {
return C[21] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[22] || CT.C22,
[_Location_name]: null,
[_Location_column]: 18,
[_Location_line]: 209,
[_Location_file]: "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/widgets/icon.dart"
});
},
get C26() {
return C[26] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "width",
[_Location_column]: 11,
[_Location_line]: 207,
[_Location_file]: null
});
},
get C27() {
return C[27] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "height",
[_Location_column]: 11,
[_Location_line]: 208,
[_Location_file]: null
});
},
get C28() {
return C[28] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 11,
[_Location_line]: 209,
[_Location_file]: null
});
},
get C25() {
return C[25] = dart.constList([C[26] || CT.C26, C[27] || CT.C27, C[28] || CT.C28], T._LocationL());
},
get C24() {
return C[24] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[25] || CT.C25,
[_Location_name]: null,
[_Location_column]: 16,
[_Location_line]: 206,
[_Location_file]: "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/widgets/icon.dart"
});
},
get C31() {
return C[31] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 9,
[_Location_line]: 206,
[_Location_file]: null
});
},
get C30() {
return C[30] = dart.constList([C[31] || CT.C31], T._LocationL());
},
get C29() {
return C[29] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[30] || CT.C30,
[_Location_name]: null,
[_Location_column]: 14,
[_Location_line]: 205,
[_Location_file]: "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/widgets/icon.dart"
});
},
get C34() {
return C[34] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "label",
[_Location_column]: 7,
[_Location_line]: 204,
[_Location_file]: null
});
},
get C35() {
return C[35] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: null,
[_Location_name]: "child",
[_Location_column]: 7,
[_Location_line]: 205,
[_Location_file]: null
});
},
get C33() {
return C[33] = dart.constList([C[34] || CT.C34, C[35] || CT.C35], T._LocationL());
},
get C32() {
return C[32] = dart.const({
__proto__: widget_inspector._Location.prototype,
[_Location_parameterLocations]: C[33] || CT.C33,
[_Location_name]: null,
[_Location_column]: 12,
[_Location_line]: 203,
[_Location_file]: "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/widgets/icon.dart"
});
}
}, false);
var C = Array(36).fill(void 0);
var I = [
"file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter/lib/src/widgets/icon.dart",
"package:flutter/src/widgets/icon.dart"
];
var icon$0 = dart.privateName(icon$, "Icon.icon");
var size$ = dart.privateName(icon$, "Icon.size");
var color$ = dart.privateName(icon$, "Icon.color");
var semanticLabel$ = dart.privateName(icon$, "Icon.semanticLabel");
var textDirection$ = dart.privateName(icon$, "Icon.textDirection");
var _Location_parameterLocations = dart.privateName(widget_inspector, "_Location.parameterLocations");
var _Location_name = dart.privateName(widget_inspector, "_Location.name");
var _Location_column = dart.privateName(widget_inspector, "_Location.column");
var _Location_line = dart.privateName(widget_inspector, "_Location.line");
var _Location_file = dart.privateName(widget_inspector, "_Location.file");
var _name = dart.privateName(ui, "_name");
icon$.Icon = class Icon extends framework.StatelessWidget {
get icon() {
return this[icon$0];
}
set icon(value) {
super.icon = value;
}
get size() {
return this[size$];
}
set size(value) {
super.size = value;
}
get color() {
return this[color$];
}
set color(value) {
super.color = value;
}
get semanticLabel() {
return this[semanticLabel$];
}
set semanticLabel(value) {
super.semanticLabel = value;
}
get textDirection() {
return this[textDirection$];
}
set textDirection(value) {
super.textDirection = value;
}
build(context) {
let t0, t0$, t0$0, t0$1, t0$2;
if (context == null) dart.nullFailed(I[0], 153, 29, "context");
if (!(this.textDirection != null || dart.test(debug.debugCheckHasDirectionality(context)))) dart.assertFailed(null, I[0], 154, 12, "this.textDirection != null || debugCheckHasDirectionality(context)");
let textDirection = (t0 = this.textDirection, t0 == null ? basic.Directionality.of(context) : t0);
let iconTheme = icon_theme.IconTheme.of(context);
let iconSize = (t0$ = this.size, t0$ == null ? iconTheme.size : t0$);
if (this.icon == null) {
return new basic.Semantics.new({label: this.semanticLabel, child: new basic.SizedBox.new({width: iconSize, height: iconSize, $creationLocationd_0dea112b090073317d4: C[0] || CT.C0}), $creationLocationd_0dea112b090073317d4: C[4] || CT.C4});
}
let iconOpacity = (t0$0 = iconTheme.opacity, t0$0 == null ? 1.0 : t0$0);
let iconColor = (t0$1 = this.color, t0$1 == null ? dart.nullCheck(iconTheme.color) : t0$1);
if (iconOpacity !== 1.0) iconColor = iconColor.withOpacity(dart.notNull(iconColor.opacity) * dart.notNull(iconOpacity));
let iconWidget = new basic.RichText.new({overflow: paragraph.TextOverflow.visible, textDirection: textDirection, text: new text_span.TextSpan.new({text: core.String.fromCharCode(dart.nullCheck(this.icon).codePoint), style: new text_style.TextStyle.new({inherit: false, color: iconColor, fontSize: iconSize, fontFamily: dart.nullCheck(this.icon).fontFamily, package: dart.nullCheck(this.icon).fontPackage})}), $creationLocationd_0dea112b090073317d4: C[8] || CT.C8});
if (dart.test(dart.nullCheck(this.icon).matchTextDirection)) {
switch (textDirection) {
case C[19] || CT.C19:
{
iconWidget = new basic.Transform.new({transform: (t0$2 = vector_math_64.Matrix4.identity(), (() => {
t0$2.scale(-1.0, 1.0, 1.0);
return t0$2;
})()), alignment: alignment.Alignment.center, transformHitTests: false, child: iconWidget, $creationLocationd_0dea112b090073317d4: C[13] || CT.C13});
break;
}
case C[20] || CT.C20:
{
break;
}
default:
{
dart.throw(new _internal.ReachabilityError.new("`null` encountered as case in a switch expression with a non-nullable enum type."));
}
}
}
return new basic.Semantics.new({label: this.semanticLabel, child: new basic.ExcludeSemantics.new({child: new basic.SizedBox.new({width: iconSize, height: iconSize, child: new basic.Center.new({child: iconWidget, $creationLocationd_0dea112b090073317d4: C[21] || CT.C21}), $creationLocationd_0dea112b090073317d4: C[24] || CT.C24}), $creationLocationd_0dea112b090073317d4: C[29] || CT.C29}), $creationLocationd_0dea112b090073317d4: C[32] || CT.C32});
}
debugFillProperties(properties) {
if (properties == null) dart.nullFailed(I[0], 218, 56, "properties");
super.debugFillProperties(properties);
properties.add(new icon_data.IconDataProperty.new("icon", this.icon, {ifNull: "<empty>", showName: false}));
properties.add(new diagnostics.DoubleProperty.new("size", this.size, {defaultValue: null}));
properties.add(new colors.ColorProperty.new("color", this.color, {defaultValue: null}));
}
};
(icon$.Icon.new = function(icon, opts) {
let key = opts && 'key' in opts ? opts.key : null;
let size = opts && 'size' in opts ? opts.size : null;
let color = opts && 'color' in opts ? opts.color : null;
let semanticLabel = opts && 'semanticLabel' in opts ? opts.semanticLabel : null;
let textDirection = opts && 'textDirection' in opts ? opts.textDirection : null;
let $36creationLocationd_0dea112b090073317d4 = opts && '$creationLocationd_0dea112b090073317d4' in opts ? opts.$creationLocationd_0dea112b090073317d4 : null;
this[icon$0] = icon;
this[size$] = size;
this[color$] = color;
this[semanticLabel$] = semanticLabel;
this[textDirection$] = textDirection;
icon$.Icon.__proto__.new.call(this, {key: key, $creationLocationd_0dea112b090073317d4: $36creationLocationd_0dea112b090073317d4});
;
}).prototype = icon$.Icon.prototype;
dart.addTypeTests(icon$.Icon);
dart.addTypeCaches(icon$.Icon);
dart.setMethodSignature(icon$.Icon, () => ({
__proto__: dart.getMethods(icon$.Icon.__proto__),
build: dart.fnType(framework.Widget, [framework.BuildContext])
}));
dart.setLibraryUri(icon$.Icon, I[1]);
dart.setFieldSignature(icon$.Icon, () => ({
__proto__: dart.getFields(icon$.Icon.__proto__),
icon: dart.finalFieldType(dart.nullable(icon_data.IconData)),
size: dart.finalFieldType(dart.nullable(core.double)),
color: dart.finalFieldType(dart.nullable(ui.Color)),
semanticLabel: dart.finalFieldType(dart.nullable(core.String)),
textDirection: dart.finalFieldType(dart.nullable(ui.TextDirection))
}));
dart.trackLibraries("packages/flutter/src/widgets/icon.dart", {
"package:flutter/src/widgets/icon.dart": icon$
}, {
}, '{"version":3,"sourceRoot":"","sources":["icon.dart"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAkFkB;;;;;;IAcF;;;;;;IA6BD;;;;;;IASC;;;;;;IAeO;;;;;;UAGK;;;AACxB,YAAY,AAAc,AAAQ,wCAAG,kCAA4B,OAAO;AACpD,2BAAmC,yBAAd,aAAgC,wBAAG,OAAO;AAE/D,sBAAsB,wBAAG,OAAO;AAEtC,sBAAgB,iBAAL,cAAQ,AAAU,SAAD;AAE1C,UAAI,AAAK;AACP,cAAO,iCACE,2BACA,+BAAgB,QAAQ,UAAU,QAAQ;;AAIxC,yBAAgC,OAAlB,AAAU,SAAD,UAAC,eAAW;AAC1C,uBAAkB,mBAAN,eAAwB,eAAf,AAAU,SAAD;AACpC,UAAI,AAAY,WAAD,KAAI,KACjB,AAAkE,YAAtD,AAAU,SAAD,aAA+B,aAAlB,AAAU,SAAD,yBAAW,WAAW;AAE5D,uBAAa,kCACK,+CACR,aAAa,QACtB,kCACS,yBAAiB,AAAE,eAAN,8BACnB,uCACI,cACF,SAAS,YACN,QAAQ,cACF,AAAE,eAAN,gCACC,AAAE,eAAN;AAKf,oBAAQ,AAAE,eAAN;AACF,gBAAQ,aAAa;;;AAOhB,YALD,aAAa,+EACQ;AAAY,2BAAM,CAAC,KAAK,KAAK;;gCAC3B,+CACF,cACZ,UAAU;AAEnB;;;;AAEA;;;;AAVJ;;;;AAcF,YAAO,iCACE,2BACA,uCACE,+BACE,QAAQ,UACP,QAAQ,SACT,6BACE,UAAU;IAK3B;;UAGqD;AACd,MAA/B,0BAAoB,UAAU;AAC8C,MAAlF,AAAW,UAAD,KAAK,mCAAiB,QAAQ,oBAAc,qBAAqB;AACX,MAAhE,AAAW,UAAD,KAAK,mCAAe,QAAQ,0BAAoB;AACO,MAAjE,AAAW,UAAD,KAAK,6BAAc,SAAS,2BAAqB;IAC7D;;6BAxJO;QACA;QACA;QACA;QACA;QACA;;IALA;IAEA;IACA;IACA;IACA;AACF,8CAAW,GAAG;;EAAC","file":"../../../../../../../../../../../packages/flutter/src/widgets/icon.dart.lib.js"}');
// Exports:
return {
src__widgets__icon: icon$
};
}));
//# sourceMappingURL=icon.dart.lib.js.map
{
"configVersion": 2,
"packages": [
{
"name": "apex_flutter_sdk",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/apex_flutter_sdk-1.1.1+1",
"packageUri": "lib/",
"languageVersion": "2.7"
},
{
"name": "archive",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/archive-2.0.13",
"packageUri": "lib/",
"languageVersion": "2.0"
},
{
"name": "args",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/args-1.6.0",
"packageUri": "lib/",
"languageVersion": "2.3"
},
{
"name": "async",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/async-2.5.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "boolean_selector",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/boolean_selector-2.1.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "characters",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/characters-1.1.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "charcode",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/charcode-1.2.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "circlegraph",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/circlegraph-0.0.6",
"packageUri": "lib/",
"languageVersion": "2.7"
},
{
"name": "clock",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/clock-1.1.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "collection",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/collection-1.15.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "convert",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/convert-2.1.1",
"packageUri": "lib/",
"languageVersion": "1.17"
},
{
"name": "crypto",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/crypto-2.1.5",
"packageUri": "lib/",
"languageVersion": "2.3"
},
{
"name": "cupertino_icons",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/cupertino_icons-1.0.2",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "enhanced_future_builder",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/enhanced_future_builder-1.0.3",
"packageUri": "lib/",
"languageVersion": "2.4"
},
{
"name": "fake_async",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/fake_async-1.2.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "ffi",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/ffi-1.0.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "file",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/file-6.0.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "flutter",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "flutter_driver",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter_driver",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "flutter_spinkit",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_spinkit-5.0.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "flutter_test",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/flutter_test",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "fuchsia_remote_debug_protocol",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/fuchsia_remote_debug_protocol",
"packageUri": "lib/",
"languageVersion": "2.2"
},
{
"name": "graphview",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/graphview-0.6.7",
"packageUri": "lib/",
"languageVersion": "2.7"
},
{
"name": "http",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/http-0.12.2",
"packageUri": "lib/",
"languageVersion": "2.4"
},
{
"name": "http_parser",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/http_parser-3.1.4",
"packageUri": "lib/",
"languageVersion": "2.3"
},
{
"name": "integration_test",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/packages/integration_test",
"packageUri": "lib/",
"languageVersion": "2.10"
},
{
"name": "localstorage",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/localstorage-3.0.6+9",
"packageUri": "lib/",
"languageVersion": "2.2"
},
{
"name": "logger",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/logger-0.9.4",
"packageUri": "lib/",
"languageVersion": "2.2"
},
{
"name": "matcher",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/matcher-0.12.10",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "meta",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/meta-1.3.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "path",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/path-1.8.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "path_provider",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider-1.6.27",
"packageUri": "lib/",
"languageVersion": "2.1"
},
{
"name": "path_provider_linux",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_linux-0.0.1+2",
"packageUri": "lib/",
"languageVersion": "2.1"
},
{
"name": "path_provider_macos",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_macos-0.0.4+8",
"packageUri": "lib/",
"languageVersion": "2.1"
},
{
"name": "path_provider_platform_interface",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_platform_interface-1.0.4",
"packageUri": "lib/",
"languageVersion": "2.1"
},
{
"name": "path_provider_windows",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider_windows-0.0.5",
"packageUri": "lib/",
"languageVersion": "2.11"
},
{
"name": "pedantic",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/pedantic-1.11.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "platform",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/platform-3.0.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "plugin_platform_interface",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/plugin_platform_interface-1.0.3",
"packageUri": "lib/",
"languageVersion": "2.1"
},
{
"name": "process",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/process-4.0.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "shamsi_date",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/shamsi_date-0.8.1",
"packageUri": "lib/",
"languageVersion": "2.1"
},
{
"name": "sky_engine",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/bin/cache/pkg/sky_engine",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "source_span",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/source_span-1.8.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "stack_trace",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/stack_trace-1.10.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "stream_channel",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/stream_channel-2.1.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "string_scanner",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/string_scanner-1.1.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "sync_http",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/sync_http-0.2.0",
"packageUri": "lib/",
"languageVersion": "2.0"
},
{
"name": "term_glyph",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/term_glyph-1.2.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "test_api",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/test_api-0.2.19",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "typed_data",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/typed_data-1.3.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "vector_math",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/vector_math-2.1.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "vm_service",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/vm_service-5.5.0",
"packageUri": "lib/",
"languageVersion": "2.6"
},
{
"name": "webdriver",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/webdriver-2.1.2",
"packageUri": "lib/",
"languageVersion": "2.0"
},
{
"name": "win32",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/win32-2.0.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "xdg_directories",
"rootUri": "file:///C:/Users/Luca/Documents/flutter/flutter_windows_1.22.5-stable/flutter/.pub-cache/hosted/pub.dartlang.org/xdg_directories-0.1.2",
"packageUri": "lib/",
"languageVersion": "2.3"
},
{
"name": "dashboard",
"rootUri": "../",
"packageUri": "lib/",
"languageVersion": "2.7"
}
],
"generated": "2021-03-15T13:10:54.177879Z",
"generator": "pub",
"generatorVersion": "2.12.0"
}
2.0.1
\ No newline at end of file
FROM nginx:latest
EXPOSE 80
COPY ./build/web/ /usr/share/nginx/html/
\ No newline at end of file
sdk.dir=C:\\Users\\Luca\\AppData\\Local\\Android\\sdk
flutter.sdk=C:\\Users\\Luca\\Documents\\flutter\\flutter_windows_1.22.5-stable\\flutter
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment