@meursyphus/flitter 2.0.0-alpha.8 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +217 -22
- package/index.cjs +2759 -1986
- package/index.d.cts +111 -47
- package/index.d.ts +111 -47
- package/index.global.js +2884 -2114
- package/index.js +2761 -1988
- package/package.json +3 -3
package/index.d.cts
CHANGED
|
@@ -2733,6 +2733,13 @@ declare class BoxDecoration extends Data {
|
|
|
2733
2733
|
getClipPath(rect: Rect): Path;
|
|
2734
2734
|
createSvgBoxPainter(): BoxDecorationSvgPainter;
|
|
2735
2735
|
createCanvasBoxPainter(): BoxDecorationCanvasPainter;
|
|
2736
|
+
copyWith({ color, border, borderRadius, shape, boxShadow, }: {
|
|
2737
|
+
color?: string | Color;
|
|
2738
|
+
border?: BoxBorder;
|
|
2739
|
+
borderRadius?: BorderRadiusGeometry;
|
|
2740
|
+
shape?: BoxShape;
|
|
2741
|
+
boxShadow?: BoxShadow[];
|
|
2742
|
+
}): BoxDecoration;
|
|
2736
2743
|
}
|
|
2737
2744
|
type BoxShape = "rectangle" | "circle";
|
|
2738
2745
|
type BoxDecorationSvgEls = {
|
|
@@ -3251,8 +3258,8 @@ declare class RenderObjectToWidgetAdapter extends RenderObjectWidget {
|
|
|
3251
3258
|
|
|
3252
3259
|
declare class StatelessWidget extends Widget {
|
|
3253
3260
|
createElement(): StatelessElement;
|
|
3254
|
-
initState(_:
|
|
3255
|
-
build(_:
|
|
3261
|
+
initState(_: BuildContext): void;
|
|
3262
|
+
build(_: BuildContext): Widget;
|
|
3256
3263
|
}
|
|
3257
3264
|
|
|
3258
3265
|
declare class StatefulWidget extends Widget {
|
|
@@ -3317,7 +3324,7 @@ declare class Curve {
|
|
|
3317
3324
|
transform(value: number): number;
|
|
3318
3325
|
}
|
|
3319
3326
|
|
|
3320
|
-
declare const _default$
|
|
3327
|
+
declare const _default$w: {
|
|
3321
3328
|
linear: Curve;
|
|
3322
3329
|
easeIn: Curve;
|
|
3323
3330
|
easeInOut: Curve;
|
|
@@ -3377,8 +3384,8 @@ declare class StatefulElement extends ComponentElement {
|
|
|
3377
3384
|
declare class State<T extends StatefulWidget> {
|
|
3378
3385
|
widget: T;
|
|
3379
3386
|
element: StatefulElement;
|
|
3380
|
-
initState(_context:
|
|
3381
|
-
build(_context:
|
|
3387
|
+
initState(_context: BuildContext): void;
|
|
3388
|
+
build(_context: BuildContext): Widget;
|
|
3382
3389
|
setState(callback?: () => any): void;
|
|
3383
3390
|
dispose(): void;
|
|
3384
3391
|
didUpdateWidget(_oldWidget: T): void;
|
|
@@ -3402,7 +3409,7 @@ declare class ImplicitlyAnimatedWidgetState<T extends ImplicitlyAnimatedWidget>
|
|
|
3402
3409
|
protected controller: AnimationController;
|
|
3403
3410
|
protected animation: CurvedAnimation;
|
|
3404
3411
|
constructor();
|
|
3405
|
-
initState(context:
|
|
3412
|
+
initState(context: BuildContext): void;
|
|
3406
3413
|
didUpdateWidget(oldWidget: T): void;
|
|
3407
3414
|
private createCurve;
|
|
3408
3415
|
private constructTweens;
|
|
@@ -3417,7 +3424,7 @@ declare class ImplicitlyAnimatedWidgetState<T extends ImplicitlyAnimatedWidget>
|
|
|
3417
3424
|
dispose(): void;
|
|
3418
3425
|
}
|
|
3419
3426
|
declare class AnimatedBaseWidgetState<T extends ImplicitlyAnimatedWidget> extends ImplicitlyAnimatedWidgetState<T> {
|
|
3420
|
-
initState(context:
|
|
3427
|
+
initState(context: BuildContext): void;
|
|
3421
3428
|
private handleChange;
|
|
3422
3429
|
}
|
|
3423
3430
|
|
|
@@ -3426,10 +3433,13 @@ declare class StatelessElement extends ComponentElement {
|
|
|
3426
3433
|
build(): Widget;
|
|
3427
3434
|
}
|
|
3428
3435
|
|
|
3436
|
+
declare class BuildContext extends Element {
|
|
3437
|
+
}
|
|
3438
|
+
|
|
3429
3439
|
declare class GlobalKey {
|
|
3430
3440
|
isGlobalKey: boolean;
|
|
3431
3441
|
buildOwner: BuildOwner;
|
|
3432
|
-
get currentContext():
|
|
3442
|
+
get currentContext(): BuildContext;
|
|
3433
3443
|
}
|
|
3434
3444
|
|
|
3435
3445
|
declare class BuildOwner {
|
|
@@ -3612,6 +3622,41 @@ declare class Scheduler {
|
|
|
3612
3622
|
addPostFrameCallbacks(callback: () => void): void;
|
|
3613
3623
|
}
|
|
3614
3624
|
|
|
3625
|
+
declare class TextPainter {
|
|
3626
|
+
text?: InlineSpan;
|
|
3627
|
+
textAlign: TextAlign;
|
|
3628
|
+
textDirection?: TextDirection;
|
|
3629
|
+
ellipsis?: string;
|
|
3630
|
+
textScaleFactor: number;
|
|
3631
|
+
maxLines?: number;
|
|
3632
|
+
textWidthBasis: TextWidthBasis;
|
|
3633
|
+
constructor({ text, textAlign, textDirection, textScaleFactor, maxLines, ellipsis, textWidthBasis, }: {
|
|
3634
|
+
text?: InlineSpan;
|
|
3635
|
+
textAlign?: TextAlign;
|
|
3636
|
+
textDirection?: TextDirection;
|
|
3637
|
+
softWrap?: boolean;
|
|
3638
|
+
textScaleFactor?: number;
|
|
3639
|
+
maxLines?: number;
|
|
3640
|
+
textWidthBasis?: TextWidthBasis;
|
|
3641
|
+
ellipsis?: string;
|
|
3642
|
+
});
|
|
3643
|
+
get plainText(): string;
|
|
3644
|
+
paragraph?: Paragraph;
|
|
3645
|
+
get width(): number;
|
|
3646
|
+
get height(): number;
|
|
3647
|
+
get intrinsicWidth(): number;
|
|
3648
|
+
get intrinsicHeight(): number;
|
|
3649
|
+
get longestLine(): number;
|
|
3650
|
+
paintOnCanvas(ctx: CanvasRenderingContext2D, offset: Offset$1): void;
|
|
3651
|
+
paintOnSvg(textEl: SVGTextElement, { createSvgEl }: SvgPaintContext): void;
|
|
3652
|
+
private createParagraph;
|
|
3653
|
+
private resetText;
|
|
3654
|
+
layout({ minWidth, maxWidth, }?: {
|
|
3655
|
+
minWidth?: number;
|
|
3656
|
+
maxWidth?: number;
|
|
3657
|
+
}): void;
|
|
3658
|
+
private layoutParagraph;
|
|
3659
|
+
}
|
|
3615
3660
|
declare class Paragraph {
|
|
3616
3661
|
ellipsis?: string;
|
|
3617
3662
|
source: Span[];
|
|
@@ -3630,7 +3675,6 @@ declare class Paragraph {
|
|
|
3630
3675
|
get intrinsicWidth(): number;
|
|
3631
3676
|
get intrinsicHeight(): number;
|
|
3632
3677
|
layout(width?: number): void;
|
|
3633
|
-
private addLine;
|
|
3634
3678
|
private align;
|
|
3635
3679
|
get resolvedTextAlign(): TextAlign;
|
|
3636
3680
|
addText({ fontFamily, fontSize, fontWeight, content, height, fontStyle, color, }: {
|
|
@@ -3902,10 +3946,10 @@ declare class ChangeNotifierProvider extends StatefulWidget {
|
|
|
3902
3946
|
}
|
|
3903
3947
|
declare class ChangeNotifierProviderState extends State<ChangeNotifierProvider> {
|
|
3904
3948
|
value: ChangeNotifier;
|
|
3905
|
-
initState(_:
|
|
3906
|
-
build(_:
|
|
3949
|
+
initState(_: BuildContext): void;
|
|
3950
|
+
build(_: BuildContext): Widget;
|
|
3907
3951
|
}
|
|
3908
|
-
declare const _default$
|
|
3952
|
+
declare const _default$v: (props_0: {
|
|
3909
3953
|
child: Widget;
|
|
3910
3954
|
create: () => ChangeNotifier;
|
|
3911
3955
|
key?: string;
|
|
@@ -3950,7 +3994,7 @@ declare class _Text extends StatelessWidget {
|
|
|
3950
3994
|
data?: string;
|
|
3951
3995
|
textSpan?: InlineSpan;
|
|
3952
3996
|
});
|
|
3953
|
-
build(_:
|
|
3997
|
+
build(_: BuildContext): Widget;
|
|
3954
3998
|
}
|
|
3955
3999
|
type TextProps = {
|
|
3956
4000
|
overflow?: TextOverflow;
|
|
@@ -3959,6 +4003,7 @@ type TextProps = {
|
|
|
3959
4003
|
textDirection?: TextDirection;
|
|
3960
4004
|
softWrap?: boolean;
|
|
3961
4005
|
textWidthBasis?: TextWidthBasis;
|
|
4006
|
+
textPainter?: TextPainter;
|
|
3962
4007
|
};
|
|
3963
4008
|
|
|
3964
4009
|
declare function Expanded({ flex, child, key, }: {
|
|
@@ -4009,7 +4054,7 @@ type ContainerProps = {
|
|
|
4009
4054
|
transformAlignment?: Alignment;
|
|
4010
4055
|
key?: any;
|
|
4011
4056
|
};
|
|
4012
|
-
declare const _default$
|
|
4057
|
+
declare const _default$u: (args_0: ContainerProps) => any;
|
|
4013
4058
|
|
|
4014
4059
|
declare class Padding$1 extends SingleChildRenderObjectWidget {
|
|
4015
4060
|
padding: EdgeInsets;
|
|
@@ -4041,15 +4086,15 @@ declare function Padding({ padding, child, key, }: {
|
|
|
4041
4086
|
|
|
4042
4087
|
declare function Builder(...props: ConstructorParameters<typeof _Builder>): _Builder;
|
|
4043
4088
|
declare class _Builder extends StatelessWidget {
|
|
4044
|
-
builder: (context:
|
|
4089
|
+
builder: (context: BuildContext) => Widget;
|
|
4045
4090
|
constructor({ builder, key, }: {
|
|
4046
|
-
builder: (context:
|
|
4091
|
+
builder: (context: BuildContext) => Widget;
|
|
4047
4092
|
key?: any;
|
|
4048
4093
|
});
|
|
4049
|
-
build(context:
|
|
4094
|
+
build(context: BuildContext): Widget;
|
|
4050
4095
|
}
|
|
4051
4096
|
|
|
4052
|
-
declare const _default$
|
|
4097
|
+
declare const _default$t: (args_0: {
|
|
4053
4098
|
key?: any;
|
|
4054
4099
|
child?: Widget;
|
|
4055
4100
|
alignment?: Alignment;
|
|
@@ -4166,7 +4211,7 @@ declare namespace Grid {
|
|
|
4166
4211
|
var Px: typeof GridTemplate.Px;
|
|
4167
4212
|
}
|
|
4168
4213
|
|
|
4169
|
-
declare const _default$
|
|
4214
|
+
declare const _default$s: (args_0?: {
|
|
4170
4215
|
flex?: number;
|
|
4171
4216
|
child?: Widget;
|
|
4172
4217
|
fit?: "tight" | "loose";
|
|
@@ -4272,7 +4317,7 @@ interface PositionedFunction {
|
|
|
4272
4317
|
}
|
|
4273
4318
|
declare const Positioned: PositionedFunction;
|
|
4274
4319
|
|
|
4275
|
-
declare const _default$
|
|
4320
|
+
declare const _default$r: (args_0: {
|
|
4276
4321
|
key?: any;
|
|
4277
4322
|
child?: Widget;
|
|
4278
4323
|
clipper: (size: Size) => Path;
|
|
@@ -4293,7 +4338,7 @@ declare function ClipOval$1({ child, clipper, clipped, key, }: {
|
|
|
4293
4338
|
key?: any;
|
|
4294
4339
|
}): any;
|
|
4295
4340
|
|
|
4296
|
-
declare const _default$
|
|
4341
|
+
declare const _default$q: (args_0: {
|
|
4297
4342
|
child?: Widget;
|
|
4298
4343
|
constraints: Constraints;
|
|
4299
4344
|
key?: any;
|
|
@@ -4326,7 +4371,7 @@ declare function UnconstrainedBox({ alignment, clipped, child, textDirection, co
|
|
|
4326
4371
|
key?: any;
|
|
4327
4372
|
}): any;
|
|
4328
4373
|
|
|
4329
|
-
declare const _default$
|
|
4374
|
+
declare const _default$p: (args_0: {
|
|
4330
4375
|
minWidth?: number;
|
|
4331
4376
|
maxWidth?: number;
|
|
4332
4377
|
minHeight?: number;
|
|
@@ -4336,7 +4381,7 @@ declare const _default$o: (args_0: {
|
|
|
4336
4381
|
key?: any;
|
|
4337
4382
|
}) => any;
|
|
4338
4383
|
|
|
4339
|
-
declare const _default$
|
|
4384
|
+
declare const _default$o: (args_0: {
|
|
4340
4385
|
child?: Widget;
|
|
4341
4386
|
maxWidth?: number;
|
|
4342
4387
|
maxHeight?: number;
|
|
@@ -4348,7 +4393,7 @@ declare function Spacer({ flex, key }?: {
|
|
|
4348
4393
|
key?: any;
|
|
4349
4394
|
}): any;
|
|
4350
4395
|
|
|
4351
|
-
declare const _default$
|
|
4396
|
+
declare const _default$n: (args_0: {
|
|
4352
4397
|
child?: Widget;
|
|
4353
4398
|
alignment?: Alignment;
|
|
4354
4399
|
widthFactor?: number;
|
|
@@ -4367,17 +4412,17 @@ declare function Flex({ children, mainAxisAlignment, crossAxisAlignment, directi
|
|
|
4367
4412
|
key?: any;
|
|
4368
4413
|
}): any;
|
|
4369
4414
|
|
|
4370
|
-
declare const _default$
|
|
4415
|
+
declare const _default$m: (args_0?: {
|
|
4371
4416
|
child?: Widget;
|
|
4372
4417
|
key?: any;
|
|
4373
4418
|
}) => any;
|
|
4374
4419
|
|
|
4375
|
-
declare const _default$
|
|
4420
|
+
declare const _default$l: (args_0?: {
|
|
4376
4421
|
child?: Widget;
|
|
4377
4422
|
key?: any;
|
|
4378
4423
|
}) => any;
|
|
4379
4424
|
|
|
4380
|
-
declare const _default$
|
|
4425
|
+
declare const _default$k: (args_0: {
|
|
4381
4426
|
child?: Widget;
|
|
4382
4427
|
translation: {
|
|
4383
4428
|
x: number;
|
|
@@ -4386,13 +4431,13 @@ declare const _default$j: (args_0: {
|
|
|
4386
4431
|
key?: any;
|
|
4387
4432
|
}) => any;
|
|
4388
4433
|
|
|
4389
|
-
declare const _default$
|
|
4434
|
+
declare const _default$j: (args_0: {
|
|
4390
4435
|
child?: Widget;
|
|
4391
4436
|
opacity: number;
|
|
4392
4437
|
key?: any;
|
|
4393
4438
|
}) => any;
|
|
4394
4439
|
|
|
4395
|
-
declare const _default$
|
|
4440
|
+
declare const _default$i: (args_0: {
|
|
4396
4441
|
child?: Widget;
|
|
4397
4442
|
aspectRatio: number;
|
|
4398
4443
|
key?: string;
|
|
@@ -4407,7 +4452,7 @@ declare function IndexedStack({ clipped, children, alignment, sizing, index, key
|
|
|
4407
4452
|
key?: any;
|
|
4408
4453
|
}): any;
|
|
4409
4454
|
|
|
4410
|
-
declare const _default$
|
|
4455
|
+
declare const _default$h: (args_0: {
|
|
4411
4456
|
color: string;
|
|
4412
4457
|
child?: Widget;
|
|
4413
4458
|
key?: any;
|
|
@@ -4421,7 +4466,7 @@ declare function ClipOval({ child, borderRadius, clipped, clipper, key, }: {
|
|
|
4421
4466
|
key?: any;
|
|
4422
4467
|
}): any;
|
|
4423
4468
|
|
|
4424
|
-
declare const _default$
|
|
4469
|
+
declare const _default$g: (args_0: {
|
|
4425
4470
|
decoration: BoxDecoration;
|
|
4426
4471
|
child?: Widget;
|
|
4427
4472
|
key?: any;
|
|
@@ -4436,9 +4481,10 @@ type RichTextProps = {
|
|
|
4436
4481
|
textScaleFactor?: number;
|
|
4437
4482
|
maxLines?: number;
|
|
4438
4483
|
textWidthBasis?: TextWidthBasis;
|
|
4484
|
+
textPainter?: TextPainter;
|
|
4439
4485
|
};
|
|
4440
4486
|
|
|
4441
|
-
declare const _default$
|
|
4487
|
+
declare const _default$f: (args_0: RichTextProps & {
|
|
4442
4488
|
key?: any;
|
|
4443
4489
|
}) => any;
|
|
4444
4490
|
|
|
@@ -4486,14 +4532,14 @@ declare class RenderCustomPaint<T extends Record<string, SVGElement> = Record<st
|
|
|
4486
4532
|
protected createCanvasPainter(): CanvasPainter;
|
|
4487
4533
|
}
|
|
4488
4534
|
|
|
4489
|
-
declare const _default$
|
|
4535
|
+
declare const _default$e: (args_0: {
|
|
4490
4536
|
child?: Widget;
|
|
4491
4537
|
size?: Size;
|
|
4492
4538
|
painter: Painter<Record<string, SVGElement>, any>;
|
|
4493
4539
|
key?: any;
|
|
4494
4540
|
}) => any;
|
|
4495
4541
|
|
|
4496
|
-
declare const _default$
|
|
4542
|
+
declare const _default$d: (args_0: {
|
|
4497
4543
|
child?: Widget;
|
|
4498
4544
|
onClick?: (e: MouseEvent) => void;
|
|
4499
4545
|
onMouseUp?: (e: MouseEvent) => void;
|
|
@@ -4523,7 +4569,7 @@ declare const _default$c: (args_0: {
|
|
|
4523
4569
|
}>;
|
|
4524
4570
|
}) => any;
|
|
4525
4571
|
|
|
4526
|
-
declare const _default$
|
|
4572
|
+
declare const _default$c: (args_0: {
|
|
4527
4573
|
key?: any;
|
|
4528
4574
|
child?: Widget;
|
|
4529
4575
|
curve?: Curve;
|
|
@@ -4533,7 +4579,7 @@ declare const _default$b: (args_0: {
|
|
|
4533
4579
|
alignment: Alignment;
|
|
4534
4580
|
}) => any;
|
|
4535
4581
|
|
|
4536
|
-
declare const _default$
|
|
4582
|
+
declare const _default$b: (args_0: {
|
|
4537
4583
|
key?: any;
|
|
4538
4584
|
child?: Widget;
|
|
4539
4585
|
curve?: Curve;
|
|
@@ -4541,7 +4587,7 @@ declare const _default$a: (args_0: {
|
|
|
4541
4587
|
opacity: number;
|
|
4542
4588
|
}) => any;
|
|
4543
4589
|
|
|
4544
|
-
declare const _default$
|
|
4590
|
+
declare const _default$a: (args_0: {
|
|
4545
4591
|
key?: any;
|
|
4546
4592
|
child?: Widget;
|
|
4547
4593
|
curve?: Curve;
|
|
@@ -4549,7 +4595,7 @@ declare const _default$9: (args_0: {
|
|
|
4549
4595
|
padding?: EdgeInsetsGeometry;
|
|
4550
4596
|
}) => any;
|
|
4551
4597
|
|
|
4552
|
-
declare const _default$
|
|
4598
|
+
declare const _default$9: (args_0: {
|
|
4553
4599
|
key?: any;
|
|
4554
4600
|
child?: Widget;
|
|
4555
4601
|
curve?: Curve;
|
|
@@ -4558,7 +4604,7 @@ declare const _default$8: (args_0: {
|
|
|
4558
4604
|
alignment?: Alignment;
|
|
4559
4605
|
}) => any;
|
|
4560
4606
|
|
|
4561
|
-
declare const _default$
|
|
4607
|
+
declare const _default$8: (args_0: {
|
|
4562
4608
|
key?: any;
|
|
4563
4609
|
child?: Widget;
|
|
4564
4610
|
curve?: Curve;
|
|
@@ -4568,7 +4614,7 @@ declare const _default$7: (args_0: {
|
|
|
4568
4614
|
alignment?: Alignment;
|
|
4569
4615
|
}) => any;
|
|
4570
4616
|
|
|
4571
|
-
declare const _default$
|
|
4617
|
+
declare const _default$7: (args_0: {
|
|
4572
4618
|
key?: any;
|
|
4573
4619
|
child?: Widget;
|
|
4574
4620
|
curve?: Curve;
|
|
@@ -4581,7 +4627,7 @@ declare const _default$6: (args_0: {
|
|
|
4581
4627
|
bottom?: number;
|
|
4582
4628
|
}) => any;
|
|
4583
4629
|
|
|
4584
|
-
declare const _default$
|
|
4630
|
+
declare const _default$6: (args_0: {
|
|
4585
4631
|
key?: any;
|
|
4586
4632
|
child?: Widget;
|
|
4587
4633
|
curve?: Curve;
|
|
@@ -4590,7 +4636,7 @@ declare const _default$5: (args_0: {
|
|
|
4590
4636
|
turns: number;
|
|
4591
4637
|
}) => any;
|
|
4592
4638
|
|
|
4593
|
-
declare const _default$
|
|
4639
|
+
declare const _default$5: (args_0: {
|
|
4594
4640
|
key?: any;
|
|
4595
4641
|
child?: Widget;
|
|
4596
4642
|
curve?: Curve;
|
|
@@ -4599,7 +4645,7 @@ declare const _default$4: (args_0: {
|
|
|
4599
4645
|
offset: Offset$1;
|
|
4600
4646
|
}) => any;
|
|
4601
4647
|
|
|
4602
|
-
declare const _default$
|
|
4648
|
+
declare const _default$4: (args_0: {
|
|
4603
4649
|
key?: any;
|
|
4604
4650
|
child?: Widget;
|
|
4605
4651
|
curve?: Curve;
|
|
@@ -4617,7 +4663,7 @@ declare const _default$3: (args_0: {
|
|
|
4617
4663
|
transformAlignment?: Alignment;
|
|
4618
4664
|
}) => any;
|
|
4619
4665
|
|
|
4620
|
-
declare const _default$
|
|
4666
|
+
declare const _default$3: (args_0: {
|
|
4621
4667
|
onDragUpdate?: (event: {
|
|
4622
4668
|
delta: Offset$1;
|
|
4623
4669
|
}) => void;
|
|
@@ -4627,19 +4673,37 @@ declare const _default$2: (args_0: {
|
|
|
4627
4673
|
}) => any;
|
|
4628
4674
|
|
|
4629
4675
|
type TooltipPosition = "topLeft" | "topRight" | "topCenter" | "bottomCenter" | "bottomLeft" | "bottomRight" | "center" | "centerLeft" | "centerRight";
|
|
4630
|
-
declare const _default$
|
|
4676
|
+
declare const _default$2: (args_0: {
|
|
4631
4677
|
key?: any;
|
|
4632
4678
|
child: Widget;
|
|
4633
4679
|
tooltip: Widget;
|
|
4634
4680
|
position?: TooltipPosition;
|
|
4635
4681
|
}) => any;
|
|
4636
4682
|
|
|
4637
|
-
declare const _default: (args_0: {
|
|
4683
|
+
declare const _default$1: (args_0: {
|
|
4638
4684
|
key?: any;
|
|
4639
4685
|
child?: Widget;
|
|
4640
4686
|
zIndex: number;
|
|
4641
4687
|
}) => any;
|
|
4642
4688
|
|
|
4689
|
+
type TextFieldProps = {
|
|
4690
|
+
key?: any;
|
|
4691
|
+
onChanged?: (text: string) => void;
|
|
4692
|
+
onSubmitted?: (text: string) => void;
|
|
4693
|
+
onFocused?: () => void;
|
|
4694
|
+
onBlurred?: () => void;
|
|
4695
|
+
style?: TextStyle;
|
|
4696
|
+
maxLines?: number;
|
|
4697
|
+
textAlign?: TextAlign;
|
|
4698
|
+
textDirection?: TextDirection;
|
|
4699
|
+
decoration?: BoxDecoration;
|
|
4700
|
+
padding?: EdgeInsets;
|
|
4701
|
+
width?: number;
|
|
4702
|
+
height?: number;
|
|
4703
|
+
focusedBorder?: Border;
|
|
4704
|
+
};
|
|
4705
|
+
declare const _default: (text: string, args_1?: TextFieldProps) => any;
|
|
4706
|
+
|
|
4643
4707
|
declare class Utils {
|
|
4644
4708
|
static sumReducer: (acc: number, value: number) => number;
|
|
4645
4709
|
static maxReducer: (acc: number, value: number) => number;
|
|
@@ -4651,4 +4715,4 @@ declare class Utils {
|
|
|
4651
4715
|
static lerp<T extends Calculable | number>(a: T, b: T, t: number): T;
|
|
4652
4716
|
}
|
|
4653
4717
|
|
|
4654
|
-
export { _default$
|
|
4718
|
+
export { _default$t as Align, Alignment, _default$c as AnimatedAlign, AnimatedBaseWidgetState, _default$4 as AnimatedContainer, _default$8 as AnimatedFractionallySizedBox, _default$b as AnimatedOpacity, _default$a as AnimatedPadding, _default$7 as AnimatedPositioned, _default$6 as AnimatedRotation, _default$9 as AnimatedScale, _default$5 as AnimatedSlide, Animation, AnimationController, AppRunner, _default$i as AspectRatio, Axis, Border, BorderRadius, BorderRadiusGeometry, BorderSide, BorderStyle$1 as BorderStyle, type BoxBorder, BoxDecoration, BoxShadow, BuildContext, BuildOwner, Builder, Calculable, CalculableTween, CanvasPainter, CanvasPaintingContext, Center, ChangeNotifier, _default$v as ChangeNotifierProvider, ClipOval$1 as ClipOval, _default$r as ClipPath, ClipOval as ClipRRect, ClipRect, Color, _default$h as ColoredBox, Column, ComponentElement, StatelessWidget as ComponentWidget, _default$q as ConstrainedBox, Constraints, ConstraintsTransformBox, _default$u as Container, CrossAxisAlignment, Curve, CurvedAnimation, _default$w as Curves, _default$e as CustomPaint, Data, _default$g as DecoratedBox, type Decoration, _default$3 as Draggable, EdgeInsets, Element, Expanded, Flex, _default$s as Flexible, _default$k as FractionalTranslation, _default$n as FractionallySizedBox, Gap, _default$d as GestureDetector, GlobalKey, Grid, ImplicitlyAnimatedWidget, ImplicitlyAnimatedWidgetState, IndexedStack, _default$m as IntrinsicHeight, _default$l as IntrinsicWidth, _default$o as LimitedBox, Listenable, MainAxisAlignment, MainAxisSize, Matrix3, Matrix4, MultiChildRenderObject, MultiChildRenderObjectWidget, type Nullable, Offset$1 as Offset, _default$j as Opacity, _default$p as OverflowBox, Padding, BaseCustomPaint as Painter, Paragraph, Path, Positioned, ProviderFn as Provider, RRect, Radius$1 as Radius, ReactiveChangeNotifier, Rect, RenderAligningShiftedBox, RenderBox, RenderFrameDispatcher, RenderObject, RenderObjectElement, RenderObjectToWidgetAdapter, RenderObjectWidget, RenderPipeline, RenderPipelineProvider, RenderView, _default$f as RichText, Row, Scheduler, SingleChildRenderObject, SingleChildRenderObjectWidget, Size, SizedBox, Spacer, Stack, StackFit, State, StatefulElement, StatefulWidget, StatelessElement, StatelessWidget, type SvgPaintContext, SvgPainter, Text, TextAlign, TextBaseline, TextDirection, _default as TextField, TextOverflow, TextPainter, TextSpan, TextStyle, TextWidthBasis, ToolTipPosition, _default$2 as Tooltip, Transform, Tween, UnconstrainedBox, Utils, Vector2, Vector3, Vector4, VerticalDirection, type VoidCallback, Widget, _default$1 as ZIndex };
|