├── .gitignore ├── Package.swift ├── README.md ├── ScreenShots ├── iPhone_screenShot.png └── iPhone_weekMode.png ├── Sources └── DateGrid │ ├── Cell │ ├── DateCell1.swift │ └── NormalDayCell.swift │ ├── DateGrid.swift │ ├── DateGridViewModel.swift │ ├── Extension │ ├── Calendar+genarageDates.swift │ ├── Date+dateFormat.swift │ └── DateFormatter+dateFormats.swift │ ├── Model │ ├── CalenderModes.swift │ └── DateGridDate.swift │ └── WeekDaySymbols │ └── WeekDaySymbols.swift ├── Tests ├── DateGridTests │ ├── DateGenerationTest.swift │ ├── DateGridTests.swift │ └── XCTestManifests.swift └── LinuxMain.swift └── banner.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/iPhone_screenShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/ScreenShots/iPhone_screenShot.png -------------------------------------------------------------------------------- /ScreenShots/iPhone_weekMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/ScreenShots/iPhone_weekMode.png -------------------------------------------------------------------------------- /Sources/DateGrid/Cell/DateCell1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Sources/DateGrid/Cell/DateCell1.swift -------------------------------------------------------------------------------- /Sources/DateGrid/Cell/NormalDayCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Sources/DateGrid/Cell/NormalDayCell.swift -------------------------------------------------------------------------------- /Sources/DateGrid/DateGrid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Sources/DateGrid/DateGrid.swift -------------------------------------------------------------------------------- /Sources/DateGrid/DateGridViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Sources/DateGrid/DateGridViewModel.swift -------------------------------------------------------------------------------- /Sources/DateGrid/Extension/Calendar+genarageDates.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Sources/DateGrid/Extension/Calendar+genarageDates.swift -------------------------------------------------------------------------------- /Sources/DateGrid/Extension/Date+dateFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Sources/DateGrid/Extension/Date+dateFormat.swift -------------------------------------------------------------------------------- /Sources/DateGrid/Extension/DateFormatter+dateFormats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Sources/DateGrid/Extension/DateFormatter+dateFormats.swift -------------------------------------------------------------------------------- /Sources/DateGrid/Model/CalenderModes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Sources/DateGrid/Model/CalenderModes.swift -------------------------------------------------------------------------------- /Sources/DateGrid/Model/DateGridDate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Sources/DateGrid/Model/DateGridDate.swift -------------------------------------------------------------------------------- /Sources/DateGrid/WeekDaySymbols/WeekDaySymbols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Sources/DateGrid/WeekDaySymbols/WeekDaySymbols.swift -------------------------------------------------------------------------------- /Tests/DateGridTests/DateGenerationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Tests/DateGridTests/DateGenerationTest.swift -------------------------------------------------------------------------------- /Tests/DateGridTests/DateGridTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Tests/DateGridTests/DateGridTests.swift -------------------------------------------------------------------------------- /Tests/DateGridTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Tests/DateGridTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yodagamaheshan/DateGrid/HEAD/banner.png --------------------------------------------------------------------------------