Skip to content

Commit 765ae17

Browse files
committed
docker fix
1 parent 940b422 commit 765ae17

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

TextGradientExample/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM iyegoroff/fable-android:1
22

33
RUN mkdir /package
44
COPY . /package
5-
WORKDIR /package/example
5+
WORKDIR /package/TextGradientExample
66

77
RUN npm i --unsafe-perm
88
RUN npm run generate:android:bundle

android/src/main/java/iyegoroff/RNTextGradient/Linear/RNLinearTextGradientSpan.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,6 @@ public class RNLinearTextGradientSpan extends CharacterStyle implements UpdateAp
5555
float x1 = useAbsoluteSizes ? end[0] : (bounds.left + end[0] * width);
5656
float y1 = useAbsoluteSizes ? end[1] : (bounds.top + end[1] * height);
5757

58-
// LogLayout.log(layout, textStart, textEnd, "'" + text.substring(textStart, textEnd) + "' " + textStart + " " + textEnd);
59-
6058
mGradient = new LinearGradient(x0, y0, x1, y1, colors, locations, Shader.TileMode.CLAMP);
6159
}
6260
}

0 commit comments

Comments
 (0)