[go: nahoru, domu]

blob: 503fd5800925bb19dda9f5ef944279f246bf9084 [file] [log] [blame]
Nick Anthony78b080b2019-10-22 17:29:38 -04001// Signature format: 3.0
2package androidx.ui.foundation {
3
George Mount932dc5d2019-10-28 08:47:10 -07004 public final class BackgroundKt {
5 ctor public BackgroundKt();
6 method public static androidx.ui.core.DrawModifier background(androidx.ui.graphics.Color color);
7 method public static androidx.ui.core.DrawModifier background(androidx.ui.graphics.Brush brush);
8 method public static androidx.ui.core.DrawModifier background(androidx.ui.engine.geometry.Shape shape, androidx.ui.graphics.Color color);
9 method public static androidx.ui.core.DrawModifier background(androidx.ui.engine.geometry.Shape shape, androidx.ui.graphics.Brush brush);
10 }
11
Nick Anthony78b080b2019-10-22 17:29:38 -040012 public final class ClickableKt {
13 ctor public ClickableKt();
14 method public static void Clickable(kotlin.jvm.functions.Function0<kotlin.Unit>? boolean consumeDownOnStart = false, kotlin.jvm.functions.Function0<kotlin.Unit> children);
15 }
16
17 public final class ColoredRectKt {
18 ctor public ColoredRectKt();
19 method public static void ColoredRect(androidx.ui.graphics.Brush brush, androidx.ui.core.Modifier modifier = Modifier.None, androidx.ui.core.Dp? width = null, androidx.ui.core.Dp? height = null);
20 method public static void ColoredRect(androidx.ui.graphics.Color color, androidx.ui.core.Modifier modifier = Modifier.None, androidx.ui.core.Dp? width = null, androidx.ui.core.Dp? height = null);
21 }
22
Louis Pullen-Freiliche7ac85a2019-11-26 17:52:03 +000023 public final class ContentColorKt {
24 ctor public ContentColorKt();
25 method public static void ProvideContentColor(androidx.ui.graphics.Color color, kotlin.jvm.functions.Function0<kotlin.Unit> children);
26 method public static androidx.ui.graphics.Color contentColor();
27 }
28
Nick Anthony78b080b2019-10-22 17:29:38 -040029 public final class DarkThemeKt {
30 ctor public DarkThemeKt();
31 method public static androidx.compose.Effect<java.lang.Boolean> isSystemInDarkTheme();
32 }
33
34 public final class DeterminateProgressIndicatorKt {
35 ctor public DeterminateProgressIndicatorKt();
36 method public static void DeterminateProgressIndicator(@FloatRange(from=0.0, to=1.0) float progress, kotlin.jvm.functions.Function0<kotlin.Unit> children);
37 }
38
39 public final class DialogKt {
40 ctor public DialogKt();
41 method public static void Dialog(kotlin.jvm.functions.Function0<kotlin.Unit> onCloseRequest, kotlin.jvm.functions.Function0<kotlin.Unit> children);
42 }
43
44 public final class DrawBordersReceiver {
45 method public void all(androidx.ui.foundation.shape.border.Border border = defaultBorder);
46 method public void allHorizontal(androidx.ui.foundation.shape.border.Border border = defaultBorder);
47 method public void allVertical(androidx.ui.foundation.shape.border.Border border = defaultBorder);
48 method public void bottom(androidx.ui.foundation.shape.border.Border border = defaultBorder);
49 method public void horizontal(int row, kotlin.ranges.IntRange columns = 0 <other> columnCount, androidx.ui.foundation.shape.border.Border border = defaultBorder);
50 method public void left(androidx.ui.foundation.shape.border.Border border = defaultBorder);
51 method public void outer(androidx.ui.foundation.shape.border.Border border = defaultBorder);
52 method public void right(androidx.ui.foundation.shape.border.Border border = defaultBorder);
53 method public void top(androidx.ui.foundation.shape.border.Border border = defaultBorder);
54 method public void vertical(int column, kotlin.ranges.IntRange rows = 0 <other> rowCount, androidx.ui.foundation.shape.border.Border border = defaultBorder);
55 }
56
Nick Anthony78b080b2019-10-22 17:29:38 -040057 public final class ImageKt {
58 ctor public ImageKt();
59 method public static void DrawImage(androidx.ui.graphics.Image image, androidx.ui.graphics.Color? tint = null);
60 method public static void SimpleImage(androidx.ui.graphics.Image image, androidx.ui.graphics.Color? tint = null);
61 }
62
Nick Anthony78b080b2019-10-22 17:29:38 -040063 public final class ScrollerKt {
64 ctor public ScrollerKt();
65 method public static void HorizontalScroller(androidx.ui.foundation.ScrollerPosition scrollerPosition = +memo({
66 <init>()
Matvei Malkovc1c72852019-11-11 18:52:12 +000067}), androidx.ui.core.Modifier modifier = Modifier.None, boolean isScrollable = true, kotlin.jvm.functions.Function0<kotlin.Unit> child);
Nick Anthony78b080b2019-10-22 17:29:38 -040068 method public static void VerticalScroller(androidx.ui.foundation.ScrollerPosition scrollerPosition = +memo({
69 <init>()
Matvei Malkovc1c72852019-11-11 18:52:12 +000070}), androidx.ui.core.Modifier modifier = Modifier.None, boolean isScrollable = true, kotlin.jvm.functions.Function0<kotlin.Unit> child);
Nick Anthony78b080b2019-10-22 17:29:38 -040071 }
72
73 public final class ScrollerPosition {
Matvei Malkov985dcfa2019-09-26 11:37:27 +010074 ctor public ScrollerPosition(float initial);
Nick Anthony78b080b2019-10-22 17:29:38 -040075 ctor public ScrollerPosition();
Matvei Malkov985dcfa2019-09-26 11:37:27 +010076 method public androidx.ui.foundation.animation.FlingConfig getFlingConfig();
77 method public androidx.ui.core.Px getMaxPosition();
Nick Anthony78b080b2019-10-22 17:29:38 -040078 method public androidx.ui.core.Px getValue();
79 method public void scrollBy(androidx.ui.core.Px value);
80 method public void scrollTo(androidx.ui.core.Px value);
Matvei Malkov985dcfa2019-09-26 11:37:27 +010081 method public void setFlingConfig(androidx.ui.foundation.animation.FlingConfig p);
Nick Anthony78b080b2019-10-22 17:29:38 -040082 method public void smoothScrollBy(androidx.ui.core.Px value, kotlin.jvm.functions.Function2<? super androidx.animation.AnimationEndReason,? super java.lang.Float,kotlin.Unit> _, _ -> });
83 method public void smoothScrollTo(androidx.ui.core.Px value, kotlin.jvm.functions.Function2<? super androidx.animation.AnimationEndReason,? super java.lang.Float,kotlin.Unit> _, _ -> });
Matvei Malkov985dcfa2019-09-26 11:37:27 +010084 property public final androidx.ui.foundation.animation.FlingConfig flingConfig;
85 property public final androidx.ui.core.Px maxPosition;
Nick Anthony78b080b2019-10-22 17:29:38 -040086 property public final androidx.ui.core.Px value;
87 }
88
89 public final class Strings {
90 method public String getChecked();
91 method public String getIndeterminate();
92 method public String getNotSelected();
93 method public String getSelected();
94 method public String getUnchecked();
95 property public final String Checked;
96 property public final String Indeterminate;
97 property public final String NotSelected;
98 property public final String Selected;
99 property public final String Unchecked;
100 field public static final androidx.ui.foundation.Strings! INSTANCE;
101 }
102
103 public final class TableBordersKt {
104 ctor public TableBordersKt();
105 method public static void drawBorders(androidx.ui.layout.TableChildren, androidx.ui.foundation.shape.border.Border defaultBorder = Border(Color.Black, Dp.Hairline), kotlin.jvm.functions.Function1<? super androidx.ui.foundation.DrawBordersReceiver,kotlin.Unit> block);
106 }
107
Matvei Malkov985dcfa2019-09-26 11:37:27 +0100108 public interface ValueHolder<T> {
109 method public T getValue();
110 property public abstract T value;
111 }
112
Nick Anthony78b080b2019-10-22 17:29:38 -0400113}
114
115package androidx.ui.foundation.animation {
116
Matvei Malkov985dcfa2019-09-26 11:37:27 +0100117 public final class AnimatedValueHolder implements androidx.ui.foundation.ValueHolder<java.lang.Float> {
118 ctor public AnimatedValueHolder(float initial);
119 method public void fling(androidx.ui.foundation.animation.FlingConfig config, float startVelocity);
Nick Anthony78b080b2019-10-22 17:29:38 -0400120 method public androidx.animation.AnimatedFloat getAnimatedFloat();
Matvei Malkov985dcfa2019-09-26 11:37:27 +0100121 method public Float! getValue();
122 method public void setBounds(float min = Float.NEGATIVE_INFINITY, float max = Float.POSITIVE_INFINITY);
123 property public final androidx.animation.AnimatedFloat animatedFloat;
124 property public Float! value;
125 }
126
127 public final class AnimatedValueHolderKt {
128 ctor public AnimatedValueHolderKt();
129 method @CheckResult(suggest="+") public static androidx.compose.Effect<androidx.ui.foundation.animation.AnimatedValueHolder> animatedDragValue(float initial, float minBound, float maxBound);
Nick Anthony78b080b2019-10-22 17:29:38 -0400130 }
131
132 public final class FlingConfig {
133 ctor public FlingConfig(androidx.animation.DecayAnimation decayAnimation, kotlin.jvm.functions.Function3<? super androidx.animation.AnimationEndReason,? super java.lang.Float,? super java.lang.Float,kotlin.Unit>? onAnimationEnd, kotlin.jvm.functions.Function1<? super java.lang.Float,androidx.animation.TargetAnimation> adjustTarget);
134 ctor public FlingConfig();
135 method public androidx.animation.DecayAnimation component1();
136 method public kotlin.jvm.functions.Function3<androidx.animation.AnimationEndReason,java.lang.Float,java.lang.Float,kotlin.Unit>? component2();
137 method public kotlin.jvm.functions.Function1<java.lang.Float,androidx.animation.TargetAnimation> component3();
138 method public androidx.ui.foundation.animation.FlingConfig copy(androidx.animation.DecayAnimation decayAnimation, kotlin.jvm.functions.Function3<? super androidx.animation.AnimationEndReason,? super java.lang.Float,? super java.lang.Float,kotlin.Unit>? onAnimationEnd, kotlin.jvm.functions.Function1<? super java.lang.Float,androidx.animation.TargetAnimation> adjustTarget);
139 method public kotlin.jvm.functions.Function1<java.lang.Float,androidx.animation.TargetAnimation> getAdjustTarget();
140 method public androidx.animation.DecayAnimation getDecayAnimation();
141 method public kotlin.jvm.functions.Function3<androidx.animation.AnimationEndReason,java.lang.Float,java.lang.Float,kotlin.Unit>? getOnAnimationEnd();
142 }
143
144 public final class FlingConfigKt {
145 ctor public FlingConfigKt();
146 method public static androidx.ui.foundation.animation.FlingConfig AnchorsFlingConfig(java.util.List<java.lang.Float> anchors, androidx.animation.AnimationBuilder<java.lang.Float> animationBuilder = androidx.animation.PhysicsBuilder(), kotlin.jvm.functions.Function3<? super androidx.animation.AnimationEndReason,? super java.lang.Float,? super java.lang.Float,kotlin.Unit>? androidx.animation.DecayAnimation decayAnimation = androidx.animation.ExponentialDecay());
147 method public static void fling(androidx.animation.AnimatedFloat, androidx.ui.foundation.animation.FlingConfig config, float startVelocity);
148 }
149
150}
151
152package androidx.ui.foundation.gestures {
153
154 public abstract sealed class DragDirection {
155 }
156
157 public static final class DragDirection.Horizontal extends androidx.ui.foundation.gestures.DragDirection {
158 field public static final androidx.ui.foundation.gestures.DragDirection.Horizontal! INSTANCE;
159 }
160
161 public static final class DragDirection.Vertical extends androidx.ui.foundation.gestures.DragDirection {
162 field public static final androidx.ui.foundation.gestures.DragDirection.Vertical! INSTANCE;
163 }
164
165 public interface DragValueController {
166 method public float getCurrentValue();
167 method public void onDrag(float target);
168 method public void onDragEnd(float velocity, kotlin.jvm.functions.Function1<? super java.lang.Float,kotlin.Unit> onValueSettled);
169 method public void setBounds(float min, float max);
170 property public abstract float currentValue;
171 }
172
Nick Anthony78b080b2019-10-22 17:29:38 -0400173 public final class DraggableKt {
174 ctor public DraggableKt();
Matvei Malkov985dcfa2019-09-26 11:37:27 +0100175 method public static void Draggable(androidx.ui.foundation.gestures.DragDirection dragDirection, androidx.ui.foundation.ValueHolder<java.lang.Float> dragValue, kotlin.jvm.functions.Function1<? super java.lang.Float,kotlin.Unit> onDragValueChangeRequested, kotlin.jvm.functions.Function1<? super androidx.ui.core.PxPosition,kotlin.Unit> kotlin.jvm.functions.Function1<? super java.lang.Float,kotlin.Unit> boolean enabled = true, kotlin.jvm.functions.Function0<kotlin.Unit> children);
Nick Anthony78b080b2019-10-22 17:29:38 -0400176 }
177
178 public final class FloatDragValueController implements androidx.ui.foundation.gestures.DragValueController {
179 ctor public FloatDragValueController(float initialValue);
180 method public float getCurrentValue();
181 method public void onDrag(float target);
182 method public void onDragEnd(float velocity, kotlin.jvm.functions.Function1<? super java.lang.Float,kotlin.Unit> onValueSettled);
183 method public void setBounds(float min, float max);
184 property public float currentValue;
185 }
186
187}
188
189package androidx.ui.foundation.selection {
190
191 public final class MutuallyExclusiveSetItemKt {
192 ctor public MutuallyExclusiveSetItemKt();
193 method public static void MutuallyExclusiveSetItem(boolean selected, kotlin.jvm.functions.Function0<kotlin.Unit> onClick, kotlin.jvm.functions.Function0<kotlin.Unit> children);
194 }
195
196 public final class ToggleableKt {
197 ctor public ToggleableKt();
Matvei Malkov13351632019-10-15 16:07:42 +0100198 method public static void Toggleable(boolean value, kotlin.jvm.functions.Function1<? super java.lang.Boolean,kotlin.Unit>? kotlin.jvm.functions.Function0<kotlin.Unit> children);
199 method public static androidx.ui.foundation.selection.ToggleableState ToggleableState(boolean value);
200 method public static void TriStateToggleable(androidx.ui.foundation.selection.ToggleableState value = androidx.ui.foundation.selection.ToggleableState.On, kotlin.jvm.functions.Function0<kotlin.Unit>? kotlin.jvm.functions.Function0<kotlin.Unit> children);
Nick Anthony78b080b2019-10-22 17:29:38 -0400201 }
202
203 public enum ToggleableState {
Nick Anthony78b080b2019-10-22 17:29:38 -0400204 enum_constant public static final androidx.ui.foundation.selection.ToggleableState Indeterminate;
Matvei Malkov13351632019-10-15 16:07:42 +0100205 enum_constant public static final androidx.ui.foundation.selection.ToggleableState Off;
206 enum_constant public static final androidx.ui.foundation.selection.ToggleableState On;
Nick Anthony78b080b2019-10-22 17:29:38 -0400207 }
208
209}
210
211package androidx.ui.foundation.semantics {
212
213 public final class FoundationSemanticsProperties {
214 method public androidx.ui.semantics.SemanticsPropertyKey<java.lang.Boolean> getInMutuallyExclusiveGroup();
215 method public androidx.ui.semantics.SemanticsPropertyKey<java.lang.Boolean> getSelected();
216 method public androidx.ui.semantics.SemanticsPropertyKey<androidx.ui.foundation.selection.ToggleableState> getToggleableState();
217 property public final androidx.ui.semantics.SemanticsPropertyKey<java.lang.Boolean> InMutuallyExclusiveGroup;
218 property public final androidx.ui.semantics.SemanticsPropertyKey<java.lang.Boolean> Selected;
219 property public final androidx.ui.semantics.SemanticsPropertyKey<androidx.ui.foundation.selection.ToggleableState> ToggleableState;
220 field public static final androidx.ui.foundation.semantics.FoundationSemanticsProperties! INSTANCE;
221 }
222
223 public final class FoundationSemanticsPropertiesKt {
224 ctor public FoundationSemanticsPropertiesKt();
225 method public static boolean getInMutuallyExclusiveGroup(androidx.ui.semantics.SemanticsPropertyReceiver);
226 method public static boolean getSelected(androidx.ui.semantics.SemanticsPropertyReceiver);
227 method public static androidx.ui.foundation.selection.ToggleableState getToggleableState(androidx.ui.semantics.SemanticsPropertyReceiver);
228 method public static void setInMutuallyExclusiveGroup(androidx.ui.semantics.SemanticsPropertyReceiver, boolean p);
229 method public static void setSelected(androidx.ui.semantics.SemanticsPropertyReceiver, boolean p);
230 method public static void setToggleableState(androidx.ui.semantics.SemanticsPropertyReceiver, androidx.ui.foundation.selection.ToggleableState p);
231 }
232
233}
234
235package androidx.ui.foundation.shape {
236
237 public final class DrawShapeKt {
238 ctor public DrawShapeKt();
239 method public static void DrawShape(androidx.ui.engine.geometry.Shape shape, androidx.ui.graphics.Color color);
240 method public static void DrawShape(androidx.ui.engine.geometry.Shape shape, androidx.ui.graphics.Brush brush);
241 }
242
243 public final class GenericShape implements androidx.ui.engine.geometry.Shape {
244 ctor public GenericShape(kotlin.jvm.functions.Function2<? super androidx.ui.graphics.Path,? super androidx.ui.core.PxSize,kotlin.Unit> builder);
245 method public androidx.ui.foundation.shape.GenericShape copy(kotlin.jvm.functions.Function2<? super androidx.ui.graphics.Path,? super androidx.ui.core.PxSize,kotlin.Unit> builder);
246 method public androidx.ui.engine.geometry.Outline createOutline(androidx.ui.core.PxSize size, androidx.ui.core.Density density);
247 }
248
249 public final class RectangleShapeKt {
250 ctor public RectangleShapeKt();
251 method public static androidx.ui.engine.geometry.Shape getRectangleShape();
252 }
253
254}
255
256package androidx.ui.foundation.shape.border {
257
258 public final class Border {
259 ctor public Border(androidx.ui.graphics.Brush brush, androidx.ui.core.Dp width);
260 method public androidx.ui.graphics.Brush component1();
261 method public androidx.ui.core.Dp component2();
262 method public androidx.ui.foundation.shape.border.Border copy(androidx.ui.graphics.Brush brush, androidx.ui.core.Dp width);
263 method public androidx.ui.graphics.Brush getBrush();
264 method public androidx.ui.core.Dp getWidth();
265 }
266
267 public final class BorderKt {
268 ctor public BorderKt();
269 method public static androidx.ui.foundation.shape.border.Border Border(androidx.ui.graphics.Color color, androidx.ui.core.Dp width);
270 }
271
272 public final class DrawBorderKt {
273 ctor public DrawBorderKt();
274 method public static void DrawBorder(androidx.ui.engine.geometry.Shape shape, androidx.ui.foundation.shape.border.Border border);
275 }
276
277}
278
279package androidx.ui.foundation.shape.corner {
280
281 public abstract class CornerBasedShape implements androidx.ui.engine.geometry.Shape {
282 ctor public CornerBasedShape(androidx.ui.foundation.shape.corner.CornerSize topLeft, androidx.ui.foundation.shape.corner.CornerSize topRight, androidx.ui.foundation.shape.corner.CornerSize bottomRight, androidx.ui.foundation.shape.corner.CornerSize bottomLeft);
283 method public final androidx.ui.engine.geometry.Outline createOutline(androidx.ui.core.PxSize size, androidx.ui.core.Density density);
284 method public abstract androidx.ui.engine.geometry.Outline createOutline(androidx.ui.core.PxSize size, androidx.ui.core.Px topLeft, androidx.ui.core.Px topRight, androidx.ui.core.Px bottomRight, androidx.ui.core.Px bottomLeft);
285 }
286
287 public interface CornerSize {
288 method public androidx.ui.core.Px toPx(androidx.ui.core.PxSize shapeSize, androidx.ui.core.Density density);
289 }
290
291 public final class CornerSizeKt {
292 ctor public CornerSizeKt();
293 method public static androidx.ui.foundation.shape.corner.CornerSize CornerSize(androidx.ui.core.Dp size);
294 method public static androidx.ui.foundation.shape.corner.CornerSize CornerSize(androidx.ui.core.Px size);
295 method public static androidx.ui.foundation.shape.corner.CornerSize CornerSize(@IntRange(from=0, to=50) int percent);
296 method public static androidx.ui.foundation.shape.corner.CornerSize CornerSize(@FloatRange(from=0.0, to=50.0) float percent);
297 method public static androidx.ui.foundation.shape.corner.CornerSize getZeroCornerSize();
298 }
299
300 public final class CutCornerShape extends androidx.ui.foundation.shape.corner.CornerBasedShape {
301 ctor public CutCornerShape(androidx.ui.foundation.shape.corner.CornerSize topLeft, androidx.ui.foundation.shape.corner.CornerSize topRight, androidx.ui.foundation.shape.corner.CornerSize bottomRight, androidx.ui.foundation.shape.corner.CornerSize bottomLeft);
302 method public androidx.ui.foundation.shape.corner.CornerSize component1();
303 method public androidx.ui.foundation.shape.corner.CornerSize component2();
304 method public androidx.ui.foundation.shape.corner.CornerSize component3();
305 method public androidx.ui.foundation.shape.corner.CornerSize component4();
306 method public androidx.ui.foundation.shape.corner.CutCornerShape copy(androidx.ui.foundation.shape.corner.CornerSize topLeft, androidx.ui.foundation.shape.corner.CornerSize topRight, androidx.ui.foundation.shape.corner.CornerSize bottomRight, androidx.ui.foundation.shape.corner.CornerSize bottomLeft);
307 method public androidx.ui.engine.geometry.Outline.Generic createOutline(androidx.ui.core.PxSize size, androidx.ui.core.Px topLeft, androidx.ui.core.Px topRight, androidx.ui.core.Px bottomRight, androidx.ui.core.Px bottomLeft);
308 method public androidx.ui.foundation.shape.corner.CornerSize getBottomLeft();
309 method public androidx.ui.foundation.shape.corner.CornerSize getBottomRight();
310 method public androidx.ui.foundation.shape.corner.CornerSize getTopLeft();
311 method public androidx.ui.foundation.shape.corner.CornerSize getTopRight();
312 }
313
314 public final class CutCornerShapeKt {
315 ctor public CutCornerShapeKt();
316 method public static androidx.ui.foundation.shape.corner.CutCornerShape CutCornerShape(androidx.ui.foundation.shape.corner.CornerSize corner);
317 method public static androidx.ui.foundation.shape.corner.CutCornerShape CutCornerShape(androidx.ui.core.Dp size);
318 method public static androidx.ui.foundation.shape.corner.CutCornerShape CutCornerShape(androidx.ui.core.Px size);
319 method public static androidx.ui.foundation.shape.corner.CutCornerShape CutCornerShape(int percent);
320 method public static androidx.ui.foundation.shape.corner.CutCornerShape CutCornerShape(androidx.ui.core.Dp topLeft = 0.dp, androidx.ui.core.Dp topRight = 0.dp, androidx.ui.core.Dp bottomRight = 0.dp, androidx.ui.core.Dp bottomLeft = 0.dp);
321 method public static androidx.ui.foundation.shape.corner.CutCornerShape CutCornerShape(androidx.ui.core.Px topLeft = 0.px, androidx.ui.core.Px topRight = 0.px, androidx.ui.core.Px bottomRight = 0.px, androidx.ui.core.Px bottomLeft = 0.px);
322 method public static androidx.ui.foundation.shape.corner.CutCornerShape CutCornerShape(@IntRange(from=0, to=50) int topLeftPercent = 0, @IntRange(from=0, to=50) int topRightPercent = 0, @IntRange(from=0, to=50) int bottomRightPercent = 0, @IntRange(from=0, to=50) int bottomLeftPercent = 0);
323 }
324
325 public final class RoundedCornerShape extends androidx.ui.foundation.shape.corner.CornerBasedShape {
326 ctor public RoundedCornerShape(androidx.ui.foundation.shape.corner.CornerSize topLeft, androidx.ui.foundation.shape.corner.CornerSize topRight, androidx.ui.foundation.shape.corner.CornerSize bottomRight, androidx.ui.foundation.shape.corner.CornerSize bottomLeft);
327 method public androidx.ui.foundation.shape.corner.CornerSize component1();
328 method public androidx.ui.foundation.shape.corner.CornerSize component2();
329 method public androidx.ui.foundation.shape.corner.CornerSize component3();
330 method public androidx.ui.foundation.shape.corner.CornerSize component4();
331 method public androidx.ui.foundation.shape.corner.RoundedCornerShape copy(androidx.ui.foundation.shape.corner.CornerSize topLeft, androidx.ui.foundation.shape.corner.CornerSize topRight, androidx.ui.foundation.shape.corner.CornerSize bottomRight, androidx.ui.foundation.shape.corner.CornerSize bottomLeft);
332 method public androidx.ui.engine.geometry.Outline.Rounded createOutline(androidx.ui.core.PxSize size, androidx.ui.core.Px topLeft, androidx.ui.core.Px topRight, androidx.ui.core.Px bottomRight, androidx.ui.core.Px bottomLeft);
333 method public androidx.ui.foundation.shape.corner.CornerSize getBottomLeft();
334 method public androidx.ui.foundation.shape.corner.CornerSize getBottomRight();
335 method public androidx.ui.foundation.shape.corner.CornerSize getTopLeft();
336 method public androidx.ui.foundation.shape.corner.CornerSize getTopRight();
337 }
338
339 public final class RoundedCornerShapeKt {
340 ctor public RoundedCornerShapeKt();
341 method public static androidx.ui.foundation.shape.corner.RoundedCornerShape RoundedCornerShape(androidx.ui.foundation.shape.corner.CornerSize corner);
342 method public static androidx.ui.foundation.shape.corner.RoundedCornerShape RoundedCornerShape(androidx.ui.core.Dp size);
343 method public static androidx.ui.foundation.shape.corner.RoundedCornerShape RoundedCornerShape(androidx.ui.core.Px size);
344 method public static androidx.ui.foundation.shape.corner.RoundedCornerShape RoundedCornerShape(int percent);
345 method public static androidx.ui.foundation.shape.corner.RoundedCornerShape RoundedCornerShape(androidx.ui.core.Dp topLeft = 0.dp, androidx.ui.core.Dp topRight = 0.dp, androidx.ui.core.Dp bottomRight = 0.dp, androidx.ui.core.Dp bottomLeft = 0.dp);
346 method public static androidx.ui.foundation.shape.corner.RoundedCornerShape RoundedCornerShape(androidx.ui.core.Px topLeft = 0.px, androidx.ui.core.Px topRight = 0.px, androidx.ui.core.Px bottomRight = 0.px, androidx.ui.core.Px bottomLeft = 0.px);
347 method public static androidx.ui.foundation.shape.corner.RoundedCornerShape RoundedCornerShape(@IntRange(from=0, to=50) int topLeftPercent = 0, @IntRange(from=0, to=50) int topRightPercent = 0, @IntRange(from=0, to=50) int bottomRightPercent = 0, @IntRange(from=0, to=50) int bottomLeftPercent = 0);
348 method public static androidx.ui.foundation.shape.corner.RoundedCornerShape getCircleShape();
349 }
350
351}
352