Files
2023-06-30 11:31:23 +03:00

436 B

Contributing

Here provided info about contribution process and recommendations.

Codestyle

Marks

For clean struct code good is using marks.

class Example {

    // MARK: - Init
    
    init() {}
}

Here you find all which using in project:

  • // MARK: - Init
  • // MARK: - Lifecycle
  • // MARK: - Layout
  • // MARK: - Public
  • // MARK: - Private
  • // MARK: - Internal
  • // MARK: - Models
  • // MARK: - Ovveride