Пример #1
0
        public static void LoadData(this INoteEntryStorage store)
        {
            var a = new NoteTake
            {
                Title = "Sprint Planning Meeting",
                Text  = "1. Scope 2. Backlog 3. Duration"
            };

            var b = new NoteTake
            {
                Title = "Daily Scrum Stand-up",
                Text  = "1. Yesterday 2.Today 3. Impediments"
            };

            var c = new NoteTake
            {
                Title = "Sprint Retrospective",
                Text  = "1. Reflection 2. Actions"
            };

            Task.WhenAll(
                store.AddAsync(a),
                store.AddAsync(b),
                store.AddAsync(c))
            .ConfigureAwait(false);
        }
Пример #2
0
        public App()
        {
            InitializeComponent();
            Entries = new FileEntryStorage();

            MainPage = new NavigationPage(new Business.MainPage())
            {
                BarBackgroundColor = Color.FromHex("#000b3a"),
                BarTextColor       = Color.LightSlateGray
            };
        }