├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── MyConference.sln ├── MyConference ├── App.xaml ├── App.xaml.cs ├── AppShell.xaml ├── AppShell.xaml.cs ├── GlobalUsings.cs ├── MauiProgram.cs ├── Models │ ├── Session.cs │ └── Speaker.cs ├── MyConference.csproj ├── Pages │ ├── AgendaPage.xaml │ ├── AgendaPage.xaml.cs │ ├── SchedulePage.xaml │ ├── SchedulePage.xaml.cs │ ├── SponsorsPage.xaml │ └── SponsorsPage.xaml.cs ├── Platforms │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── MainActivity.cs │ │ ├── MainApplication.cs │ │ └── Resources │ │ │ ├── layout │ │ │ └── tabbar.xml │ │ │ └── values │ │ │ └── colors.xml │ ├── MacCatalyst │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs │ ├── Tizen │ │ ├── Main.cs │ │ └── tizen-manifest.xml │ ├── Windows │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Package.appxmanifest │ │ └── app.manifest │ └── iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ └── Program.cs ├── Properties │ └── launchSettings.json ├── Resources │ ├── AppIcon │ │ ├── appicon.svg │ │ └── appiconfg.svg │ ├── Fonts │ │ ├── OpenSans-Regular.ttf │ │ └── OpenSans-Semibold.ttf │ ├── Images │ │ ├── dotnet_bot.svg │ │ ├── settings.svg │ │ ├── tab_agenda.svg │ │ ├── tab_schedule.svg │ │ └── tab_sponsors.svg │ ├── Raw │ │ └── AboutAssets.txt │ ├── Splash │ │ └── splash.svg │ └── Styles │ │ ├── Colors.xaml │ │ └── Styles.xaml └── ViewModels │ └── ScheduleViewModel.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MyConference.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference.sln -------------------------------------------------------------------------------- /MyConference/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/App.xaml -------------------------------------------------------------------------------- /MyConference/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/App.xaml.cs -------------------------------------------------------------------------------- /MyConference/AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/AppShell.xaml -------------------------------------------------------------------------------- /MyConference/AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/AppShell.xaml.cs -------------------------------------------------------------------------------- /MyConference/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/GlobalUsings.cs -------------------------------------------------------------------------------- /MyConference/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/MauiProgram.cs -------------------------------------------------------------------------------- /MyConference/Models/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Models/Session.cs -------------------------------------------------------------------------------- /MyConference/Models/Speaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Models/Speaker.cs -------------------------------------------------------------------------------- /MyConference/MyConference.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/MyConference.csproj -------------------------------------------------------------------------------- /MyConference/Pages/AgendaPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Pages/AgendaPage.xaml -------------------------------------------------------------------------------- /MyConference/Pages/AgendaPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Pages/AgendaPage.xaml.cs -------------------------------------------------------------------------------- /MyConference/Pages/SchedulePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Pages/SchedulePage.xaml -------------------------------------------------------------------------------- /MyConference/Pages/SchedulePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Pages/SchedulePage.xaml.cs -------------------------------------------------------------------------------- /MyConference/Pages/SponsorsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Pages/SponsorsPage.xaml -------------------------------------------------------------------------------- /MyConference/Pages/SponsorsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Pages/SponsorsPage.xaml.cs -------------------------------------------------------------------------------- /MyConference/Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /MyConference/Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /MyConference/Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /MyConference/Platforms/Android/Resources/layout/tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/Android/Resources/layout/tabbar.xml -------------------------------------------------------------------------------- /MyConference/Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /MyConference/Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /MyConference/Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /MyConference/Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /MyConference/Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /MyConference/Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /MyConference/Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /MyConference/Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /MyConference/Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /MyConference/Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /MyConference/Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /MyConference/Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /MyConference/Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /MyConference/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Properties/launchSettings.json -------------------------------------------------------------------------------- /MyConference/Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /MyConference/Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /MyConference/Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /MyConference/Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /MyConference/Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /MyConference/Resources/Images/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Resources/Images/settings.svg -------------------------------------------------------------------------------- /MyConference/Resources/Images/tab_agenda.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Resources/Images/tab_agenda.svg -------------------------------------------------------------------------------- /MyConference/Resources/Images/tab_schedule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Resources/Images/tab_schedule.svg -------------------------------------------------------------------------------- /MyConference/Resources/Images/tab_sponsors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Resources/Images/tab_sponsors.svg -------------------------------------------------------------------------------- /MyConference/Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /MyConference/Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /MyConference/Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /MyConference/Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/Resources/Styles/Styles.xaml -------------------------------------------------------------------------------- /MyConference/ViewModels/ScheduleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/MyConference/ViewModels/ScheduleViewModel.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesmontemagno/app-myconference/HEAD/README.md --------------------------------------------------------------------------------