https://github.com/theappwizard/customnavigationmenu
This project can be used for implementation of Custom Navigation Menu with help of SwiftUI
https://github.com/theappwizard/customnavigationmenu
Last synced: 10 months ago
JSON representation
This project can be used for implementation of Custom Navigation Menu with help of SwiftUI
- Host: GitHub
- URL: https://github.com/theappwizard/customnavigationmenu
- Owner: TheAppWizard
- Created: 2020-10-05T04:24:45.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2020-10-05T04:56:28.000Z (almost 6 years ago)
- Last Synced: 2025-04-09T04:51:15.199Z (about 1 year ago)
- Language: Swift
- Size: 485 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CustomNavigationMenu
This project can be used for implementation of Custom Navigation Menu with help of SwiftUI
## Concepts Used
### ScrollView
It is used for `scrolling` up / down song list
```
ScrollView(.vertical, showsIndicators: false) {
VStack(spacing: 15){
.
.
.
.
.
.
}
}
```
### Slider
It is used for showing song `seek bar`
```
HStack {
Text("1.04")
Slider(value: $sliderValue, in: 0...20, step: 1)
.accentColor(Color.red)
Text("3.45")
}.foregroundColor(Color.red)
```
### Creating Views / Screens
It is used for `creating views`
Example of Views / Screens
```
struct Queue : View {
var body: some View{
VStack{
Text("Hello")
}
}
}
```