├── Component ├── BackButton.qml ├── Footer.qml ├── Header.qml ├── IconButton.qml ├── IconWithLabel.qml ├── InfoPopup.qml ├── ListItemDelegate.qml ├── MapDetails.qml ├── PrefsButton.qml ├── PrefsLabel.qml ├── PrefsSlider.qml ├── PrefsSwitch.qml ├── PrefsTimeLine.qml ├── ProgressRunning.qml ├── RoundRectangle.qml ├── T_TimeLine.qml ├── TextFieldInput.qml └── Toast.qml ├── EagleTheme.pro ├── EagleTheme.pro.user ├── Icons ├── Down.svg ├── Eagle.png ├── Eagle │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ └── 7.png ├── HorizontalSeparator.png ├── MapIcons │ ├── Add.svg │ ├── Line.png │ ├── Plus.svg │ ├── Search.svg │ ├── charing.svg │ ├── direction.svg │ ├── pump.svg │ ├── save.svg │ ├── saveLocation.svg │ ├── searchIcon.svg │ └── switch.svg ├── Music │ ├── AddPlaylist.svg │ ├── Left.svg │ ├── Like.svg │ ├── Play.svg │ ├── Repeat.svg │ ├── Repeat2.svg │ ├── Settings.svg │ ├── Share.svg │ ├── Suffle.svg │ ├── codex-omega.png │ ├── first_page.svg │ ├── last_page.svg │ ├── pause_paly.svg │ └── right.svg ├── Notification │ ├── Error.svg │ ├── Info.svg │ ├── Success.svg │ └── Warning.svg ├── Toast │ ├── Error.svg │ ├── Info.svg │ ├── Success.svg │ ├── Warning.svg │ └── close-icon.svg ├── bluetooth.svg ├── bottomIcons │ ├── Music.svg │ ├── home.svg │ ├── map.svg │ ├── petrol.svg │ ├── phone.svg │ └── settings.svg ├── brightness 2.svg ├── button.png ├── button.svg ├── call.svg ├── calling │ ├── bi_mic-mute-fill.svg │ ├── calling.svg │ ├── eva_keypad-fill.svg │ └── fluent_call-add-20-filled.svg ├── cross.svg ├── dark │ ├── background.png │ ├── bottom_dark.png │ ├── bottom_dark2.png │ ├── stars.png │ └── top_dark.png ├── doc │ ├── Adhaar.png │ ├── driving.png │ └── pencard.png ├── dummyMap.png ├── entypo_arrow-left.svg ├── fooo.svg ├── footerbar.svg ├── footericon.svg ├── gps-signal.gif ├── green.png ├── image.png ├── location.svg ├── rightArrow.svg ├── scooty.png ├── scooty.svg ├── separator.png ├── seprator.png ├── smallSeparator.png ├── time.svg ├── tooltip.svg ├── topIcons │ ├── eva_bluetooth-fill -on.svg │ ├── eva_bluetooth-fill.svg │ ├── icn_batterytemp.svg │ ├── icn_batterytemp_glow.svg │ ├── icn_highbeam.svg │ ├── icn_highbeam_glow.svg │ ├── icn_leftindicator.svg │ ├── icn_leftindicator_glow.svg │ ├── icn_lowbeam.svg │ ├── icn_lowbeam_glow.svg │ ├── icn_rightindicator _glow.svg │ ├── icn_rightindicator.svg │ ├── icn_sidestandenabled.svg │ ├── icn_sidestandenabled_glow.svg │ ├── icn_tyrepressure.svg │ ├── icn_tyrepressure_glow.svg │ ├── wifi.svg │ ├── wifi │ │ ├── network-cellular-signal-excellent-svgrepo-com.svg │ │ ├── network-cellular-signal-good-svgrepo-com.svg │ │ ├── network-cellular-signal-none-svgrepo-com.svg │ │ ├── network-cellular-signal-ok-svgrepo-com.svg │ │ └── network-cellular-signal-weak-svgrepo-com.svg │ ├── wifi1.svg │ ├── wifi2.svg │ └── wifi3.svg ├── topbar.svg ├── verticalLine.png └── white.png ├── Pages ├── About.qml ├── Bluetooth.qml ├── Callling.qml ├── Charing.qml ├── Display.qml ├── EaglePage.qml ├── HomePage.qml ├── Keypad.qml ├── MapPage.qml ├── MusicPage.qml ├── MyTrips.qml ├── Profile.qml ├── SettingsPage.qml ├── Sound.qml ├── SystemNotification.qml ├── SystemUpdate.qml └── TripDetails.qml ├── README.md ├── StyleTheme.qml ├── app.ico ├── fonts ├── HelveticaNeueLTCom-Bd.ttf ├── HelveticaNeueLTCom-Lt.ttf ├── HelveticaNeueLTCom-Md.ttf └── HelveticaNeueLTCom-Roman.ttf ├── main.cpp ├── main.qml ├── qml.qrc └── screenshots ├── Home.png ├── about-dark.png ├── about.png ├── bluetooth-dark.png ├── bluetooth.png ├── calling.png ├── charing.png ├── clling-dark.png ├── display-dark.png ├── display.png ├── home-dark.png ├── home2.png ├── keypad.png ├── music-dark.png ├── music.png ├── notification.png ├── profile-dark.png ├── profile.png ├── sound.png ├── trip.png ├── tripDetails.png ├── tripdetailsmap.png └── update.png /Component/BackButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/BackButton.qml -------------------------------------------------------------------------------- /Component/Footer.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/Footer.qml -------------------------------------------------------------------------------- /Component/Header.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/Header.qml -------------------------------------------------------------------------------- /Component/IconButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/IconButton.qml -------------------------------------------------------------------------------- /Component/IconWithLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/IconWithLabel.qml -------------------------------------------------------------------------------- /Component/InfoPopup.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/InfoPopup.qml -------------------------------------------------------------------------------- /Component/ListItemDelegate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/ListItemDelegate.qml -------------------------------------------------------------------------------- /Component/MapDetails.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/MapDetails.qml -------------------------------------------------------------------------------- /Component/PrefsButton.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/PrefsButton.qml -------------------------------------------------------------------------------- /Component/PrefsLabel.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/PrefsLabel.qml -------------------------------------------------------------------------------- /Component/PrefsSlider.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/PrefsSlider.qml -------------------------------------------------------------------------------- /Component/PrefsSwitch.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/PrefsSwitch.qml -------------------------------------------------------------------------------- /Component/PrefsTimeLine.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/PrefsTimeLine.qml -------------------------------------------------------------------------------- /Component/ProgressRunning.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/ProgressRunning.qml -------------------------------------------------------------------------------- /Component/RoundRectangle.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/RoundRectangle.qml -------------------------------------------------------------------------------- /Component/T_TimeLine.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/T_TimeLine.qml -------------------------------------------------------------------------------- /Component/TextFieldInput.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/TextFieldInput.qml -------------------------------------------------------------------------------- /Component/Toast.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Component/Toast.qml -------------------------------------------------------------------------------- /EagleTheme.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/EagleTheme.pro -------------------------------------------------------------------------------- /EagleTheme.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/EagleTheme.pro.user -------------------------------------------------------------------------------- /Icons/Down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Down.svg -------------------------------------------------------------------------------- /Icons/Eagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Eagle.png -------------------------------------------------------------------------------- /Icons/Eagle/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Eagle/1.png -------------------------------------------------------------------------------- /Icons/Eagle/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Eagle/2.png -------------------------------------------------------------------------------- /Icons/Eagle/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Eagle/3.png -------------------------------------------------------------------------------- /Icons/Eagle/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Eagle/4.png -------------------------------------------------------------------------------- /Icons/Eagle/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Eagle/5.png -------------------------------------------------------------------------------- /Icons/Eagle/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Eagle/6.png -------------------------------------------------------------------------------- /Icons/Eagle/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Eagle/7.png -------------------------------------------------------------------------------- /Icons/HorizontalSeparator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/HorizontalSeparator.png -------------------------------------------------------------------------------- /Icons/MapIcons/Add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/MapIcons/Add.svg -------------------------------------------------------------------------------- /Icons/MapIcons/Line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/MapIcons/Line.png -------------------------------------------------------------------------------- /Icons/MapIcons/Plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/MapIcons/Plus.svg -------------------------------------------------------------------------------- /Icons/MapIcons/Search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/MapIcons/Search.svg -------------------------------------------------------------------------------- /Icons/MapIcons/charing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/MapIcons/charing.svg -------------------------------------------------------------------------------- /Icons/MapIcons/direction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/MapIcons/direction.svg -------------------------------------------------------------------------------- /Icons/MapIcons/pump.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/MapIcons/pump.svg -------------------------------------------------------------------------------- /Icons/MapIcons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/MapIcons/save.svg -------------------------------------------------------------------------------- /Icons/MapIcons/saveLocation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/MapIcons/saveLocation.svg -------------------------------------------------------------------------------- /Icons/MapIcons/searchIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/MapIcons/searchIcon.svg -------------------------------------------------------------------------------- /Icons/MapIcons/switch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/MapIcons/switch.svg -------------------------------------------------------------------------------- /Icons/Music/AddPlaylist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Music/AddPlaylist.svg -------------------------------------------------------------------------------- /Icons/Music/Left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Music/Left.svg -------------------------------------------------------------------------------- /Icons/Music/Like.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Music/Like.svg -------------------------------------------------------------------------------- /Icons/Music/Play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Music/Play.svg -------------------------------------------------------------------------------- /Icons/Music/Repeat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Music/Repeat.svg -------------------------------------------------------------------------------- /Icons/Music/Repeat2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Music/Repeat2.svg -------------------------------------------------------------------------------- /Icons/Music/Settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Music/Settings.svg -------------------------------------------------------------------------------- /Icons/Music/Share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Music/Share.svg -------------------------------------------------------------------------------- /Icons/Music/Suffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Music/Suffle.svg -------------------------------------------------------------------------------- /Icons/Music/codex-omega.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Music/codex-omega.png -------------------------------------------------------------------------------- /Icons/Music/first_page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Music/first_page.svg -------------------------------------------------------------------------------- /Icons/Music/last_page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Music/last_page.svg -------------------------------------------------------------------------------- /Icons/Music/pause_paly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Music/pause_paly.svg -------------------------------------------------------------------------------- /Icons/Music/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Music/right.svg -------------------------------------------------------------------------------- /Icons/Notification/Error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Notification/Error.svg -------------------------------------------------------------------------------- /Icons/Notification/Info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Notification/Info.svg -------------------------------------------------------------------------------- /Icons/Notification/Success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Notification/Success.svg -------------------------------------------------------------------------------- /Icons/Notification/Warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Notification/Warning.svg -------------------------------------------------------------------------------- /Icons/Toast/Error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Toast/Error.svg -------------------------------------------------------------------------------- /Icons/Toast/Info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Toast/Info.svg -------------------------------------------------------------------------------- /Icons/Toast/Success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Toast/Success.svg -------------------------------------------------------------------------------- /Icons/Toast/Warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Toast/Warning.svg -------------------------------------------------------------------------------- /Icons/Toast/close-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/Toast/close-icon.svg -------------------------------------------------------------------------------- /Icons/bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/bluetooth.svg -------------------------------------------------------------------------------- /Icons/bottomIcons/Music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/bottomIcons/Music.svg -------------------------------------------------------------------------------- /Icons/bottomIcons/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/bottomIcons/home.svg -------------------------------------------------------------------------------- /Icons/bottomIcons/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/bottomIcons/map.svg -------------------------------------------------------------------------------- /Icons/bottomIcons/petrol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/bottomIcons/petrol.svg -------------------------------------------------------------------------------- /Icons/bottomIcons/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/bottomIcons/phone.svg -------------------------------------------------------------------------------- /Icons/bottomIcons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/bottomIcons/settings.svg -------------------------------------------------------------------------------- /Icons/brightness 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/brightness 2.svg -------------------------------------------------------------------------------- /Icons/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/button.png -------------------------------------------------------------------------------- /Icons/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/button.svg -------------------------------------------------------------------------------- /Icons/call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/call.svg -------------------------------------------------------------------------------- /Icons/calling/bi_mic-mute-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/calling/bi_mic-mute-fill.svg -------------------------------------------------------------------------------- /Icons/calling/calling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/calling/calling.svg -------------------------------------------------------------------------------- /Icons/calling/eva_keypad-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/calling/eva_keypad-fill.svg -------------------------------------------------------------------------------- /Icons/calling/fluent_call-add-20-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/calling/fluent_call-add-20-filled.svg -------------------------------------------------------------------------------- /Icons/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/cross.svg -------------------------------------------------------------------------------- /Icons/dark/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/dark/background.png -------------------------------------------------------------------------------- /Icons/dark/bottom_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/dark/bottom_dark.png -------------------------------------------------------------------------------- /Icons/dark/bottom_dark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/dark/bottom_dark2.png -------------------------------------------------------------------------------- /Icons/dark/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/dark/stars.png -------------------------------------------------------------------------------- /Icons/dark/top_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/dark/top_dark.png -------------------------------------------------------------------------------- /Icons/doc/Adhaar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/doc/Adhaar.png -------------------------------------------------------------------------------- /Icons/doc/driving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/doc/driving.png -------------------------------------------------------------------------------- /Icons/doc/pencard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/doc/pencard.png -------------------------------------------------------------------------------- /Icons/dummyMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/dummyMap.png -------------------------------------------------------------------------------- /Icons/entypo_arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/entypo_arrow-left.svg -------------------------------------------------------------------------------- /Icons/fooo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/fooo.svg -------------------------------------------------------------------------------- /Icons/footerbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/footerbar.svg -------------------------------------------------------------------------------- /Icons/footericon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/footericon.svg -------------------------------------------------------------------------------- /Icons/gps-signal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/gps-signal.gif -------------------------------------------------------------------------------- /Icons/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/green.png -------------------------------------------------------------------------------- /Icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/image.png -------------------------------------------------------------------------------- /Icons/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/location.svg -------------------------------------------------------------------------------- /Icons/rightArrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/rightArrow.svg -------------------------------------------------------------------------------- /Icons/scooty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/scooty.png -------------------------------------------------------------------------------- /Icons/scooty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/scooty.svg -------------------------------------------------------------------------------- /Icons/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/separator.png -------------------------------------------------------------------------------- /Icons/seprator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/seprator.png -------------------------------------------------------------------------------- /Icons/smallSeparator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/smallSeparator.png -------------------------------------------------------------------------------- /Icons/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/time.svg -------------------------------------------------------------------------------- /Icons/tooltip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/tooltip.svg -------------------------------------------------------------------------------- /Icons/topIcons/eva_bluetooth-fill -on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/eva_bluetooth-fill -on.svg -------------------------------------------------------------------------------- /Icons/topIcons/eva_bluetooth-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/eva_bluetooth-fill.svg -------------------------------------------------------------------------------- /Icons/topIcons/icn_batterytemp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/icn_batterytemp.svg -------------------------------------------------------------------------------- /Icons/topIcons/icn_batterytemp_glow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/icn_batterytemp_glow.svg -------------------------------------------------------------------------------- /Icons/topIcons/icn_highbeam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/icn_highbeam.svg -------------------------------------------------------------------------------- /Icons/topIcons/icn_highbeam_glow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/icn_highbeam_glow.svg -------------------------------------------------------------------------------- /Icons/topIcons/icn_leftindicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/icn_leftindicator.svg -------------------------------------------------------------------------------- /Icons/topIcons/icn_leftindicator_glow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/icn_leftindicator_glow.svg -------------------------------------------------------------------------------- /Icons/topIcons/icn_lowbeam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/icn_lowbeam.svg -------------------------------------------------------------------------------- /Icons/topIcons/icn_lowbeam_glow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/icn_lowbeam_glow.svg -------------------------------------------------------------------------------- /Icons/topIcons/icn_rightindicator _glow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/icn_rightindicator _glow.svg -------------------------------------------------------------------------------- /Icons/topIcons/icn_rightindicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/icn_rightindicator.svg -------------------------------------------------------------------------------- /Icons/topIcons/icn_sidestandenabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/icn_sidestandenabled.svg -------------------------------------------------------------------------------- /Icons/topIcons/icn_sidestandenabled_glow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/icn_sidestandenabled_glow.svg -------------------------------------------------------------------------------- /Icons/topIcons/icn_tyrepressure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/icn_tyrepressure.svg -------------------------------------------------------------------------------- /Icons/topIcons/icn_tyrepressure_glow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/icn_tyrepressure_glow.svg -------------------------------------------------------------------------------- /Icons/topIcons/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/wifi.svg -------------------------------------------------------------------------------- /Icons/topIcons/wifi/network-cellular-signal-excellent-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/wifi/network-cellular-signal-excellent-svgrepo-com.svg -------------------------------------------------------------------------------- /Icons/topIcons/wifi/network-cellular-signal-good-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/wifi/network-cellular-signal-good-svgrepo-com.svg -------------------------------------------------------------------------------- /Icons/topIcons/wifi/network-cellular-signal-none-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/wifi/network-cellular-signal-none-svgrepo-com.svg -------------------------------------------------------------------------------- /Icons/topIcons/wifi/network-cellular-signal-ok-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/wifi/network-cellular-signal-ok-svgrepo-com.svg -------------------------------------------------------------------------------- /Icons/topIcons/wifi/network-cellular-signal-weak-svgrepo-com.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/wifi/network-cellular-signal-weak-svgrepo-com.svg -------------------------------------------------------------------------------- /Icons/topIcons/wifi1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/wifi1.svg -------------------------------------------------------------------------------- /Icons/topIcons/wifi2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/wifi2.svg -------------------------------------------------------------------------------- /Icons/topIcons/wifi3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topIcons/wifi3.svg -------------------------------------------------------------------------------- /Icons/topbar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/topbar.svg -------------------------------------------------------------------------------- /Icons/verticalLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/verticalLine.png -------------------------------------------------------------------------------- /Icons/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Icons/white.png -------------------------------------------------------------------------------- /Pages/About.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/About.qml -------------------------------------------------------------------------------- /Pages/Bluetooth.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/Bluetooth.qml -------------------------------------------------------------------------------- /Pages/Callling.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/Callling.qml -------------------------------------------------------------------------------- /Pages/Charing.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/Charing.qml -------------------------------------------------------------------------------- /Pages/Display.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/Display.qml -------------------------------------------------------------------------------- /Pages/EaglePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/EaglePage.qml -------------------------------------------------------------------------------- /Pages/HomePage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/HomePage.qml -------------------------------------------------------------------------------- /Pages/Keypad.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/Keypad.qml -------------------------------------------------------------------------------- /Pages/MapPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/MapPage.qml -------------------------------------------------------------------------------- /Pages/MusicPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/MusicPage.qml -------------------------------------------------------------------------------- /Pages/MyTrips.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/MyTrips.qml -------------------------------------------------------------------------------- /Pages/Profile.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/Profile.qml -------------------------------------------------------------------------------- /Pages/SettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/SettingsPage.qml -------------------------------------------------------------------------------- /Pages/Sound.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/Sound.qml -------------------------------------------------------------------------------- /Pages/SystemNotification.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/SystemNotification.qml -------------------------------------------------------------------------------- /Pages/SystemUpdate.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/SystemUpdate.qml -------------------------------------------------------------------------------- /Pages/TripDetails.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/Pages/TripDetails.qml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /StyleTheme.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/StyleTheme.qml -------------------------------------------------------------------------------- /app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/app.ico -------------------------------------------------------------------------------- /fonts/HelveticaNeueLTCom-Bd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/fonts/HelveticaNeueLTCom-Bd.ttf -------------------------------------------------------------------------------- /fonts/HelveticaNeueLTCom-Lt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/fonts/HelveticaNeueLTCom-Lt.ttf -------------------------------------------------------------------------------- /fonts/HelveticaNeueLTCom-Md.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/fonts/HelveticaNeueLTCom-Md.ttf -------------------------------------------------------------------------------- /fonts/HelveticaNeueLTCom-Roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/fonts/HelveticaNeueLTCom-Roman.ttf -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/main.cpp -------------------------------------------------------------------------------- /main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/main.qml -------------------------------------------------------------------------------- /qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/qml.qrc -------------------------------------------------------------------------------- /screenshots/Home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/Home.png -------------------------------------------------------------------------------- /screenshots/about-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/about-dark.png -------------------------------------------------------------------------------- /screenshots/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/about.png -------------------------------------------------------------------------------- /screenshots/bluetooth-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/bluetooth-dark.png -------------------------------------------------------------------------------- /screenshots/bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/bluetooth.png -------------------------------------------------------------------------------- /screenshots/calling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/calling.png -------------------------------------------------------------------------------- /screenshots/charing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/charing.png -------------------------------------------------------------------------------- /screenshots/clling-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/clling-dark.png -------------------------------------------------------------------------------- /screenshots/display-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/display-dark.png -------------------------------------------------------------------------------- /screenshots/display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/display.png -------------------------------------------------------------------------------- /screenshots/home-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/home-dark.png -------------------------------------------------------------------------------- /screenshots/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/home2.png -------------------------------------------------------------------------------- /screenshots/keypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/keypad.png -------------------------------------------------------------------------------- /screenshots/music-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/music-dark.png -------------------------------------------------------------------------------- /screenshots/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/music.png -------------------------------------------------------------------------------- /screenshots/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/notification.png -------------------------------------------------------------------------------- /screenshots/profile-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/profile-dark.png -------------------------------------------------------------------------------- /screenshots/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/profile.png -------------------------------------------------------------------------------- /screenshots/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/sound.png -------------------------------------------------------------------------------- /screenshots/trip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/trip.png -------------------------------------------------------------------------------- /screenshots/tripDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/tripDetails.png -------------------------------------------------------------------------------- /screenshots/tripdetailsmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/tripdetailsmap.png -------------------------------------------------------------------------------- /screenshots/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cppqtdev/Eagle-Scooty-Dashboard/HEAD/screenshots/update.png --------------------------------------------------------------------------------