Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<67d638f79b7b06a087f63563c2e5ff95>>
* @generated SignedSource<<a822c8a92925244e2a302bd04f034fa0>>
*/

/**
Expand Down Expand Up @@ -49,7 +49,7 @@ public open class ReactNativeFeatureFlagsDefaults : ReactNativeFeatureFlagsProvi

override fun enableAndroidAntialiasedBorderRadiusClipping(): Boolean = false

override fun enableAndroidLinearText(): Boolean = false
override fun enableAndroidLinearText(): Boolean = true

override fun enableAndroidTextMeasurementOptimizations(): Boolean = false

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<2cf1c7be6b0086da159550454273ce2d>>
* @generated SignedSource<<aabacee6a60e5939fdc52f692c3ae49c>>
*/

/**
Expand Down Expand Up @@ -80,7 +80,7 @@ class ReactNativeFeatureFlagsDefaults : public ReactNativeFeatureFlagsProvider {
}

bool enableAndroidLinearText() override {
return false;
return true;
}

bool enableAndroidTextMeasurementOptimizations() override {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ const definitions: FeatureFlagDefinitions = {
ossReleaseStage: 'none',
},
enableAndroidLinearText: {
defaultValue: false,
defaultValue: true,
metadata: {
dateAdded: '2025-09-09',
description:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<d929e85924c23746edd258449cdb2d42>>
* @generated SignedSource<<3f5bd11c861fc2e02627ba0f9941f4b7>>
* @flow strict
* @noformat
*/
Expand Down Expand Up @@ -253,7 +253,7 @@ export const enableAndroidAntialiasedBorderRadiusClipping: Getter<boolean> = cre
/**
* Enables linear text rendering on Android wherever subpixel text rendering is enabled
*/
export const enableAndroidLinearText: Getter<boolean> = createNativeFlagGetter('enableAndroidLinearText', false);
export const enableAndroidLinearText: Getter<boolean> = createNativeFlagGetter('enableAndroidLinearText', true);
/**
* Enables various optimizations throughout the path of measuring text on Android.
*/
Expand Down
Loading