-
Notifications
You must be signed in to change notification settings - Fork 539
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Discussion #7
Comments
Hello, I would like to translate the app in Italian, could you tell me which file to select and then translate? |
Hey @N3Z-aka-SUPERMAN , |
It is always a pleasure, however you could implement the ability to clone / download projects directly on iOS? How does Working Copy so to speak ... |
Working Copy is one of my favorite apps and I will definitely implement similar functionality. |
One feature request - to be able to rearrange tabs. 90% of the use on mobile for me is checking events/notifications, I would hardly ever search and look at trending repositories on mobile. As such it would be most useful if the Events tab was first so it would be the first view to appear when the app is launched. |
Hi @lukakerr |
Wow that was a very quick turnaround! Thanks, it looks good. I will await the next App Store release :) |
Hi @khoren93 |
Hi @illidandh Create Response.swift model
Create your Api class
|
Hi @khoren93 let refresh = Observable.of(Observable.just(()), headerRefreshTrigger).merge() |
Hi @illidandh |
Hello @khoren93 When select Repository Cell, it will create Here's the question. I expected that when |
ViewModel is not released? |
Hi, I have the same problem. How did you deal with it? |
@khoren93 I am trying to enable default iOS back swipe gesture? using Hero transition. were able to achieve this with your case? |
Hi @alouanemed |
@khoren93 |
@alouanemed |
Aha, Can you elaborate about this? |
Is there a TestFlight beta for this so that we can test out features or not? |
Hi @Minion3665 , |
Hi! I noticed that the API Keys are published under the Config.swift file! Are these the keys of deployment as well? Because if so, you could run into issues with ill intentioned people. This also happens with the Firebase API Key in the GoogleServices-Info.plist. |
I think your project is very good, I want to learn your project, but I don't know how to start, because I am not very familiar with rx.swift. Also I would like to have a project structure document. |
in // MARK: - segues list, all app scenes
enum Scene {
case tabs(viewModel: HomeTabBarViewModel)
case search(viewModel: SearchViewModel)
case languages(viewModel: LanguagesViewModel)
case users(viewModel: UsersViewModel)
case userDetails(viewModel: UserViewModel)
case repositories(viewModel: RepositoriesViewModel)
case repositoryDetails(viewModel: RepositoryViewModel)
case contents(viewModel: ContentsViewModel)
case source(viewModel: SourceViewModel)
case commits(viewModel: CommitsViewModel)
case branches(viewModel: BranchesViewModel)
case releases(viewModel: ReleasesViewModel)
case pullRequests(viewModel: PullRequestsViewModel)
case pullRequestDetails(viewModel: PullRequestViewModel)
case events(viewModel: EventsViewModel)
case notifications(viewModel: NotificationsViewModel)
case issues(viewModel: IssuesViewModel)
case issueDetails(viewModel: IssueViewModel)
case linesCount(viewModel: LinesCountViewModel)
case theme(viewModel: ThemeViewModel)
case language(viewModel: LanguageViewModel)
case acknowledgements
case contacts(viewModel: ContactsViewModel)
case whatsNew(block: WhatsNewBlock)
case safari(URL)
case safariController(URL)
case webController(URL)
} You define all of the scenes, and most of them has a initial Func with a |
Hi @wang22290 , I think this example will be helpful // File Api.swift
protocol SwiftHubAPI {
func repository(fullname: String, qualifiedName: String) -> Single<Repository>
}
// File RestApi.swift
class RestApi: SwiftHubAPI {
func repository(fullname: String, qualifiedName: String) -> Single<Repository> {
// implementation for Rest api
}
}
// File GraphApi.swift
class GraphApi: SwiftHubAPI {
func repository(fullname: String, qualifiedName: String) -> Single<Repository> {
// implementation for Graph api
}
} |
Hello to all, and welcome to SwiftHub!
Write here all your questions, suggestions or feature requests.
The text was updated successfully, but these errors were encountered: