Home
last modified time | relevance | path

Searched refs:textBaseline (Results 1 – 25 of 46) sorted by relevance

12

/third_party/flutter/flutter/packages/flutter/lib/src/material/
Dtypography.dart344 … 2014', inherit: false, fontSize: 112.0, fontWeight: FontWeight.w100, textBaseline: TextBaseline.a…
345 … 2014', inherit: false, fontSize: 56.0, fontWeight: FontWeight.w400, textBaseline: TextBaseline.a…
346 … 2014', inherit: false, fontSize: 45.0, fontWeight: FontWeight.w400, textBaseline: TextBaseline.a…
347 … 2014', inherit: false, fontSize: 34.0, fontWeight: FontWeight.w400, textBaseline: TextBaseline.a…
348 … 2014', inherit: false, fontSize: 24.0, fontWeight: FontWeight.w400, textBaseline: TextBaseline.a…
349 …14', inherit: false, fontSize: 20.0, fontWeight: FontWeight.w500, textBaseline: TextBaseline.a…
350 …2014', inherit: false, fontSize: 16.0, fontWeight: FontWeight.w400, textBaseline: TextBaseline.a…
351 …14', inherit: false, fontSize: 14.0, fontWeight: FontWeight.w500, textBaseline: TextBaseline.a…
352 …14', inherit: false, fontSize: 14.0, fontWeight: FontWeight.w400, textBaseline: TextBaseline.a…
353 …2014', inherit: false, fontSize: 12.0, fontWeight: FontWeight.w400, textBaseline: TextBaseline.a…
[all …]
Dinput_decorator.dart596 @required TextBaseline textBaseline,
602 assert(textBaseline != null),
606 _textBaseline = textBaseline,
741 TextBaseline get textBaseline => _textBaseline;
743 set textBaseline(TextBaseline value) {
900 final double baseline = box.getDistanceToBaseline(textBaseline);
1607 @required this.textBaseline,
1612 assert(textBaseline != null),
1618 final TextBaseline textBaseline;
1631 textBaseline: textBaseline,
[all …]
Dselectable_text.dart514 (widget.style.fontSize == null || widget.style.textBaseline == null)),
515 'inherit false style must supply fontSize and textBaseline',
/third_party/flutter/flutter/examples/stocks/lib/
Dstock_row.dart80 textBaseline: DefaultTextStyle.of(context).style.textBaseline,
/third_party/flutter/flutter/packages/flutter/lib/src/painting/
Dtext_style.dart408 this.textBaseline,
532 final TextBaseline textBaseline;
707 TextBaseline textBaseline,
739 textBaseline: textBaseline ?? this.textBaseline,
839 textBaseline: textBaseline,
898 textBaseline: other.textBaseline,
951 textBaseline: t < 0.5 ? null : b.textBaseline,
978 textBaseline: t < 0.5 ? a.textBaseline : null,
1004 textBaseline: t < 0.5 ? a.textBaseline : b.textBaseline,
1037 textBaseline: textBaseline,
[all …]
/third_party/flutter/skia/experimental/docs/
DcanvasBackend.js147 ctx.textBaseline = paint.textBaseline;
DsvgBackend.js210 svgElement.setAttribute("alignment-baseline", paint.textBaseline);
/third_party/skia/experimental/docs/
DcanvasBackend.js147 ctx.textBaseline = paint.textBaseline;
DsvgBackend.js210 svgElement.setAttribute("alignment-baseline", paint.textBaseline);
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dtable.dart106 this.textBaseline,
198 final TextBaseline textBaseline;
218 textBaseline: textBaseline,
235 ..textBaseline = textBaseline;
Dbasic.dart3711 /// [CrossAxisAlignment.baseline], then [textBaseline] must not be null.
3726 this.textBaseline,
3733 assert(crossAxisAlignment != CrossAxisAlignment.baseline || textBaseline != null),
3816 final TextBaseline textBaseline;
3860 textBaseline: textBaseline,
3873 ..textBaseline = textBaseline;
3885 properties.add(EnumProperty<TextBaseline>('textBaseline', textBaseline, defaultValue: null));
4053 /// [textBaseline] must not be null.
4068 TextBaseline textBaseline,
4079 textBaseline: textBaseline,
[all …]
/third_party/flutter/flutter/examples/layers/rendering/
Dflex_layout.dart22 …final RenderFlex row = RenderFlex(crossAxisAlignment: crossAxisAlignment, textBaseline: TextBaseli…
39 …final RenderFlex subrow = RenderFlex(crossAxisAlignment: crossAxisAlignment, textBaseline: TextBas…
/third_party/flutter/flutter/packages/flutter/test/painting/
Dtext_style_test.dart172 …ss: unspecified, fontWeight: FontWeight.w700, fontStyle: unspecified, textBaseline: unspecified, f…
175 …ss: unspecified, fontWeight: FontWeight.w800, fontStyle: unspecified, textBaseline: unspecified, f…
199 …ckness: unspecified, fontWeight: unspecified, fontStyle: unspecified, textBaseline: unspecified, f…
203 …ckness: unspecified, fontWeight: unspecified, fontStyle: unspecified, textBaseline: unspecified, f…
239 …ckness: unspecified, fontWeight: unspecified, fontStyle: unspecified, textBaseline: unspecified, f…
/third_party/flutter/flutter/packages/flutter/test/material/
Dpopup_menu_theme_test.dart14 textStyle: const TextStyle(color: Color(0xffffffff), textBaseline: TextBaseline.alphabetic),
195 …const TextStyle textStyle = TextStyle(color: Color(0x00000000), textBaseline: TextBaseline.alphabe…
268 … textStyle: const TextStyle(color: Color(0xfffff000), textBaseline: TextBaseline.alphabetic),
Dtheme_test.dart403 expect(style.textBaseline, isNotNull);
717 TextBaseline get textBaseline => _delegate.textBaseline;
780 TextBaseline textBaseline,
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/
Dflex.dart279 TextBaseline textBaseline,
290 _textBaseline = textBaseline {
422 TextBaseline get textBaseline => _textBaseline;
424 set textBaseline(TextBaseline value) {
815 if (textBaseline == null)
819 final double distance = child.getDistanceToBaseline(textBaseline, onlyReal: true);
914 assert(textBaseline != null);
915 final double distance = child.getDistanceToBaseline(textBaseline, onlyReal: true);
1022 properties.add(EnumProperty<TextBaseline>('textBaseline', textBaseline, defaultValue: null));
Dtable.dart334 /// used is specified by [RenderTable.textBaseline]. It is not valid to use
335 /// the baseline value if [RenderTable.textBaseline] is not specified.
370 TextBaseline textBaseline,
388 _textBaseline = textBaseline;
560 TextBaseline get textBaseline => _textBaseline;
562 set textBaseline(TextBaseline value) {
1042 assert(textBaseline != null);
1044 … final double childBaseline = child.getDistanceToBaseline(textBaseline, onlyReal: true);
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/text/
Dparagraph.dart412 ui.TextBaseline textBaseline,
434 _textBaseline = textBaseline,
543 'textBaseline: ${_textBaseline ?? "unspecified"}, '
769 ui.TextBaseline textBaseline;
808 textBaseline = style._textBaseline;
844 textBaseline: textBaseline,
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/animation/
Dwidgets.dart70 textBaseline: TextBaseline.alphabetic,
/third_party/skia/modules/canvaskit/
Dparagraph_bindings.cpp51 para::TextBaseline textBaseline; member
181 ts.setTextBaseline(s.textBaseline); in toTextStyle()
/third_party/skia/site/docs/dev/design/
Dtext_c2d.md32 - textBaseline
/third_party/flutter/flutter/packages/flutter/test/rendering/
Dtable_test.dart71 textBaseline: TextBaseline.alphabetic,
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dbasic_test.dart163 textBaseline: TextBaseline.alphabetic,
/third_party/flutter/engine/flutter/lib/ui/
Dtext.dart474 // - Element 7: The enum index of the |textBaseline|.
484 TextBaseline textBaseline,
522 if (textBaseline != null) {
524 result[7] = textBaseline.index;
600 …/// * `textBaseline`: The common baseline that should be aligned between this text span and its pa…
615 TextBaseline textBaseline,
639 textBaseline,
723 …'textBaseline: ${ _encoded[0] & 0x00080 == 0x00080 ? TextBaseline.values[_encoded[7]] …
/third_party/flutter/flutter/packages/flutter/lib/src/cupertino/
Ddialog.dart25 textBaseline: TextBaseline.alphabetic,
36 textBaseline: TextBaseline.alphabetic,
45 textBaseline: TextBaseline.alphabetic,

12