Change TextSettings to TTreeVievItem in Firemonkey
Changing the text property of a tree item in Firemonkey is really simple, you only need to do this:
tiC := TTreeViewItem.Create();
tiC.Text := ‘BLA BLA’;
tiC.StyledSettings := [];
tiC.TextSettings.FontColor := TAlphaColorRec.Blue;
tiC.Parent := ParentItem;
tiC.TagString := ;
tiC.Tag := ;