Untitled
unknown
plain_text
a year ago
354 B
1
Indexable
Never
public partial class LearnItemDetailsPage : ContentPage { public LearnItem Item { get; set; } public LearnItemDetailsPage (LearnItem learnItem) { Item = learnItem; InitializeComponent (); // Initialize properties based on model titleLearnItemLbl.Text = learnItem.Title; descriptionLearnItemLbl.Text = learnItem.Description; } }