Add Weather Sample app and remove unnecessary codes in Voicememo app (#146)
author안주원/Common Platform Lab(SR)/Staff Engineer/삼성전자 <juwon.ahn@samsung.com>
Thu, 6 Feb 2020 08:00:25 +0000 (17:00 +0900)
committer유리나/Common Platform Lab(SR)/Staff Engineer/삼성전자 <rina6350.you@samsung.com>
Thu, 6 Feb 2020 08:00:25 +0000 (17:00 +0900)
commit184f6f25796290198262ad706de1d141a8eb28de
tree97d000b846d3c293e1c1005582793122bad6ef84
parenta9ee03fc8620e2b02c247b93d3d1214ecd6109fb
Add Weather Sample app and remove unnecessary codes in Voicememo app (#146)
76 files changed:
Test/Voicememo2020/VoiceMemo/App.xaml.cs
Test/Voicememo2020/VoiceMemo/Converters/DurationToRemainingTimeConverter.cs
Test/Voicememo2020/VoiceMemo/Converters/RecordsCountToViewVisibilityConverter.cs
Test/Voicememo2020/VoiceMemo/Converters/SttToPropertyConverter.cs
Test/Voicememo2020/VoiceMemo/Models/Record.cs
Test/Voicememo2020/VoiceMemo/Renderers/GraphicPopUpRenderer.cs
Test/Voicememo2020/VoiceMemo/Renderers/ProgressbarPopupRenderer.cs
Test/Voicememo2020/VoiceMemo/Views/MainPage.xaml.cs
Test/Weather/LICENSE [new file with mode: 0755]
Test/Weather/README.md [new file with mode: 0755]
Test/Weather/Screenshots/weatherApp_screen01.png [new file with mode: 0755]
Test/Weather/Screenshots/weatherApp_screen02.png [new file with mode: 0755]
Test/Weather/Screenshots/weatherApp_screen03.png [new file with mode: 0755]
Test/Weather/Screenshots/weatherApp_screen04.png [new file with mode: 0755]
Test/Weather/Screenshots/weatherApp_screen05.png [new file with mode: 0755]
Test/Weather/Weather.sln [new file with mode: 0755]
Test/Weather/Weather/App.cs [new file with mode: 0755]
Test/Weather/Weather/Behaviors/CountryCodeValidatorBehavior.cs [new file with mode: 0755]
Test/Weather/Weather/Behaviors/CurrentWeatherPageBehavior.cs [new file with mode: 0755]
Test/Weather/Weather/Config/ApiConfig.cs [new file with mode: 0755]
Test/Weather/Weather/Controls/DoubleLabel.xaml [new file with mode: 0755]
Test/Weather/Weather/Controls/DoubleLabel.xaml.cs [new file with mode: 0755]
Test/Weather/Weather/Converters/DegreeToCardinalDirectionConverter.cs [new file with mode: 0755]
Test/Weather/Weather/Converters/ErrorMessageConverter.cs [new file with mode: 0755]
Test/Weather/Weather/Converters/ImageSourceConverter.cs [new file with mode: 0755]
Test/Weather/Weather/Converters/MeasurementSystemConverter.cs [new file with mode: 0755]
Test/Weather/Weather/Converters/TimeStampToDateConverter.cs [new file with mode: 0755]
Test/Weather/Weather/Converters/TimeStampToTimeConverter.cs [new file with mode: 0755]
Test/Weather/Weather/Converters/TimeStampWithOffsetAndTimezoneConverter.cs [new file with mode: 0755]
Test/Weather/Weather/Converters/TimeStampWithOffsetConverter.cs [new file with mode: 0755]
Test/Weather/Weather/Data/city.list.json [new file with mode: 0755]
Test/Weather/Weather/Data/country.list.json [new file with mode: 0755]
Test/Weather/Weather/Models/Location/City.cs [new file with mode: 0755]
Test/Weather/Weather/Models/Location/Coordinates.cs [new file with mode: 0755]
Test/Weather/Weather/Models/Location/Country.cs [new file with mode: 0755]
Test/Weather/Weather/Models/Location/TimeZone.cs [new file with mode: 0755]
Test/Weather/Weather/Models/Weather/Clouds.cs [new file with mode: 0755]
Test/Weather/Weather/Models/Weather/CurrentWeather.cs [new file with mode: 0755]
Test/Weather/Weather/Models/Weather/Forecast.cs [new file with mode: 0755]
Test/Weather/Weather/Models/Weather/SunData.cs [new file with mode: 0755]
Test/Weather/Weather/Models/Weather/WeatherBase.cs [new file with mode: 0755]
Test/Weather/Weather/Models/Weather/WeatherData.cs [new file with mode: 0755]
Test/Weather/Weather/Models/Weather/Wind.cs [new file with mode: 0755]
Test/Weather/Weather/Service/CityProvider.cs [new file with mode: 0755]
Test/Weather/Weather/Service/CountryProvider.cs [new file with mode: 0755]
Test/Weather/Weather/Service/ICityProvider.cs [new file with mode: 0755]
Test/Weather/Weather/Service/ICountryProvider.cs [new file with mode: 0755]
Test/Weather/Weather/Utils/BindableString.cs [new file with mode: 0755]
Test/Weather/Weather/Utils/ErrorHandler.cs [new file with mode: 0755]
Test/Weather/Weather/Utils/HttpException.cs [new file with mode: 0755]
Test/Weather/Weather/Utils/IRequest.cs [new file with mode: 0755]
Test/Weather/Weather/Utils/JsonFileReader.cs [new file with mode: 0755]
Test/Weather/Weather/Utils/NotificationTask.cs [new file with mode: 0755]
Test/Weather/Weather/Utils/Request.cs [new file with mode: 0755]
Test/Weather/Weather/Utils/TimeStamp.cs [new file with mode: 0755]
Test/Weather/Weather/Utils/UnitFormatter.cs [new file with mode: 0755]
Test/Weather/Weather/ViewModels/ApiErrorViewModel.cs [new file with mode: 0755]
Test/Weather/Weather/ViewModels/CurrentWeatherViewModel.cs [new file with mode: 0755]
Test/Weather/Weather/ViewModels/ForecastViewModel.cs [new file with mode: 0755]
Test/Weather/Weather/ViewModels/MainPageViewModel.cs [new file with mode: 0755]
Test/Weather/Weather/ViewModels/ViewModelBase.cs [new file with mode: 0755]
Test/Weather/Weather/Views/ApiErrorPage.xaml [new file with mode: 0755]
Test/Weather/Weather/Views/ApiErrorPage.xaml.cs [new file with mode: 0755]
Test/Weather/Weather/Views/CurrentWeatherPage.xaml [new file with mode: 0755]
Test/Weather/Weather/Views/CurrentWeatherPage.xaml.cs [new file with mode: 0755]
Test/Weather/Weather/Views/ForecastPage.xaml [new file with mode: 0755]
Test/Weather/Weather/Views/ForecastPage.xaml.cs [new file with mode: 0755]
Test/Weather/Weather/Views/MainPage.xaml [new file with mode: 0755]
Test/Weather/Weather/Views/MainPage.xaml.cs [new file with mode: 0755]
Test/Weather/Weather/Views/MissingKeyErrorPage.xaml [new file with mode: 0755]
Test/Weather/Weather/Views/MissingKeyErrorPage.xaml.cs [new file with mode: 0755]
Test/Weather/Weather/Weather.cs [new file with mode: 0755]
Test/Weather/Weather/Weather.csproj [new file with mode: 0755]
Test/Weather/Weather/shared/res/Weather.png [new file with mode: 0755]
Test/Weather/Weather/tizen-manifest.xml [new file with mode: 0755]
XSF.sln