Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(android): add letterSpacing to Label #13984

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

m1ga
Copy link
Contributor

@m1ga m1ga commented Feb 5, 2024

iOS can do letterspacing with a attributedString already. Android doesn't have this property. As it just a text property I've added it the same way as lineSpacing so it is a native Label property.

var win = Ti.UI.createWindow({
	layout: "vertical"
});
var textLabel = Ti.UI.createLabel({
	text: "some text",
	letterSpacing: -0.1,
	font: {
		fontSize: 40
	}
});
var textLabel2 = Ti.UI.createLabel({
	text: "some text",
	letterSpacing: 0.1,
	font: {
		fontSize: 40
	}
});

win.add([textLabel, textLabel2]);
win.open();

Screenshot_20240205-091745

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant