-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #188 from enaboapps/iss187
Choose number of quadrants based on screen size
- Loading branch information
Showing
3 changed files
with
100 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
app/src/main/java/com/enaboapps/switchify/service/cursor/QuadrantInfo.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.enaboapps.switchify.service.cursor | ||
|
||
/** | ||
* This data class represents the quadrant information | ||
* @param quadrantIndex The index of the quadrant | ||
* @param start The start index of the quadrant | ||
* @param end The end index of the quadrant | ||
*/ | ||
data class QuadrantInfo( | ||
val quadrantIndex: Int, | ||
val start: Int, | ||
val end: Int, | ||
) |