Skip to content

Commit

Permalink
Merge pull request #8 from mariana0412/dev
Browse files Browse the repository at this point in the history
Main functionality implemented
  • Loading branch information
mariana0412 authored Nov 17, 2024
2 parents 052ea43 + d783865 commit dcb7d0f
Show file tree
Hide file tree
Showing 14 changed files with 985 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:

steps:
- name: Check out the code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install SwiftLint
run: brew install swiftlint

- name: Run SwiftLint
run: swiftlint
run: swiftlint --strict
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2024 Mariana Piz

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
7 changes: 5 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ import PackageDescription

let package = Package(
name: "CardFlipster",
platforms: [
.iOS(.v15)
],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "CardFlipster",
targets: ["CardFlipster"]),
targets: ["CardFlipster"])
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
Expand All @@ -19,6 +22,6 @@ let package = Package(
.testTarget(
name: "CardFlipsterTests",
dependencies: ["CardFlipster"]
),
)
]
)
200 changes: 200 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,200 @@
# CardFlipster

CardFlipster is a customizable SwiftUI framework that makes building flashcard-based learning apps both simple and captivating.
With smooth card-flipping animations, progress tracking via a built-in progress bar, and the ability to retry incorrect flashcards,
it offers a dynamic learning experience. Whether using predefined themes or customizing every detail, CardFlipster empowers developers
to create visually stunning and interactive applications.

## Features

- <b>Predefined Themes:</b> Includes ready-to-use Light and Dark themes for quick setup
- <b>Custom Themes:</b> Offers full flexibility to customize the appearance of flashcards and the statistics screen, including colors, fonts, and texts
- <b>Flip Animation:</b> Flashcards include a smooth horizontal flip animation when tapped
- <b>Interactive Flashcards:</b> Features intuitive swipe gestures — swipe right to mark as correct, swipe left to mark as incorrect — along with dedicated "checkmark" and "cross" buttons for marking answers
- <b>Progress Tracking:</b> Displays a progress bar indicating how many flashcards have been already reviewed and their total number
- <b>Round Summary:</b> After each round, view statistics on your progress, including the number of flashcards learned and those marked as incorrect
- <b>Restart with Incorrect Cards:</b> Start a new round with only the flashcards that were marked as incorrect

## Requirements

- iOS 15.0 or later
- Xcode 15.0 or later
- Swift 5.5 or later

## Installation
### Swift Package Manager (SPM)
1. Open your Xcode project
2. Go to File -> Add Packages
3. In the search bar, paste the GitHub repository URL:
```bash
https://github.com/mariana0412/CardFlipster.git
```
5. Choose the latest version or specify a version range if necessary
6. Click Add Package to integrate the framework into your project

### Cocoapods
1. Install CocoaPods (if not already installed)
Using RubyGems:
```bash
sudo gem install cocoapods
```
Or using Homebrew:
```bash
brew install cocoapods
```
2. Initialize CocoaPods in your project - navigate to your project's root directory in the terminal and run:
```ruby
pod init
```
3. Open the newly created Podfile in your project directory and add the following line under your target:
```ruby
pod 'CardFlipster', '~> 1.0.0'
```
4. Install the Pod - save the Podfile and run the following command in the terminal:
```ruby
pod install
```
5. After installation completes, open the newly created .xcworkspace file in Xcode instead of your .xcodeproj.

## Usage

### 1. Import the Framework
To get started, import the framework into your Swift file:
```swift
import CardFlipster
```

### 2. Define the flashcards
Create an array of flashcards using the Flashcard structure:
```swift
let flashcards: [Flashcard] = [
Flashcard(frontText: "What is the capital of Ukraine?", backText: "Kyiv"),
Flashcard(frontText: "What is the capital of France?", backText: "Paris"),
Flashcard(frontText: "What is the capital of Italy?", backText: "Rome")
]
```

### 3. Create a Flashcard Deck View
#### a. Use a Predefined Theme (.light or .dark)
```swift
FlashcardDeckView(flashcards: flashcards, theme: .dark)
```
#### b. Use a Customized Theme

For a fully personalized appearance, define a custom theme by configuring the flashcards and statistics screens separately.

##### i. Customize Flashcards Appearance
Use FlashcardUIConfig to define how the flashcards should look:

```swift
let flashcardConfig = FlashcardUIConfig(
frontColor: .purple,
backColor: .pink,
font: .title,
frontFontColor: .white,
backFontColor: .white,
progressBarColor: .pink
)
```

##### ii. Customize Statistics Screen Appearance
Use StatisticsScreenUIConfig to style the statistics screen:
```swift
let statisticsConfig = StatisticsScreenUIConfig(
backgroundColor: LinearGradient(
gradient: Gradient(colors: [.purple, .pink]),
startPoint: .top,
endPoint: .bottom
),
titleFont: .largeTitle,
subtitleFont: .headline,
textColor: .white,
buttonBackgroundColor: .purple,
buttonTextColor: .white
)
```

##### iii. Combine Configurations to Create a Custom Theme
Use FlashcardDeckUIConfig to bring together the flashcard and statistics screen customizations:
```swift
FlashcardDeckView(
flashcards: flashcards,
theme: .custom(FlashcardDeckUIConfig(
flashcardConfig: flashcardConfig,
statisticsConfig: statisticsConfig)
)
)
```

## Examples
### Using Predefined Themes
This example demonstrates how to use a predefined dark theme for the flashcard deck:
```swift
import SwiftUI
import CardFlipster

struct CardFlipsterDarkTheme: View {

let flashcards: [Flashcard] = [
Flashcard(frontText: "What is the capital of Ukraine?", backText: "Kyiv"),
Flashcard(frontText: "What is the capital of France?", backText: "Paris"),
Flashcard(frontText: "What is the capital of Italy?", backText: "Rome")
]


var body: some View {
FlashcardDeckView(flashcards: flashcards, theme: .dark)
}
}
```

### Using Custom Themes
This example showcases how to create a custom theme by specifying the appearance for both flashcards and statistics:
```swift
import SwiftUI
import CardFlipster

struct CardFlipsterCustomTheme: View {

let flashcards: [Flashcard] = [
Flashcard(frontText: "What is the capital of Ukraine?", backText: "Kyiv"),
Flashcard(frontText: "What is the capital of France?", backText: "Paris"),
Flashcard(frontText: "What is the capital of Italy?", backText: "Rome")
]

let flashcardConfig = FlashcardUIConfig(
frontColor: .purple,
backColor: .pink,
font: .title,
frontFontColor: .white,
backFontColor: .white,
progressBarColor: .pink
)

let statisticsConfig = StatisticsScreenUIConfig(
backgroundColor: LinearGradient(
gradient: Gradient(colors: [.purple, .pink]),
startPoint: .top,
endPoint: .bottom
),
titleFont: .largeTitle,
subtitleFont: .headline,
textColor: .white,
buttonBackgroundColor: .purple,
buttonTextColor: .white
)

var body: some View {
FlashcardDeckView(
flashcards: flashcards,
theme: .custom(FlashcardDeckUIConfig(
flashcardConfig: flashcardConfig,
statisticsConfig: statisticsConfig)
)
)
}
}
```

## License
CardFlipster is licensed under the [MIT License](https://github.com/mariana0412/CardFlipster/blob/main/LICENSE).
1 change: 0 additions & 1 deletion Sources/CardFlipster/CardFlipster.swift

This file was deleted.

76 changes: 76 additions & 0 deletions Sources/CardFlipster/Config/FlashcardDeckTheme.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
//
// FlashcardDeckTheme.swift
// CardFlipster
//
// Created by Mariana Piz on 17.11.2024.
//

import SwiftUI

/// A theme for `FlashcardDeckView`.
public enum FlashcardDeckTheme {

/// A light theme with default light colors.
case light
/// A dark theme with default dark colors.
case dark
/// A custom theme with user-defined configurations.
/// - Parameter config: The `FlashcardDeckUIConfig` containing custom configurations.
case custom(FlashcardDeckUIConfig)

var config: FlashcardDeckUIConfig {
switch self {
case .light:
let lightGray = Color(red: 240/255, green: 241/255, blue: 239/255)

return FlashcardDeckUIConfig(
flashcardConfig: FlashcardUIConfig(
frontColor: lightGray,
backColor: lightGray,
font: .body,
frontFontColor: .black,
backFontColor: .black,
progressBarColor: lightGray
),
statisticsConfig: StatisticsScreenUIConfig(
backgroundColor: LinearGradient(
gradient: Gradient(colors: [lightGray, .white]),
startPoint: .top,
endPoint: .bottom
),
titleFont: .title,
subtitleFont: .subheadline,
textColor: .black,
buttonBackgroundColor: lightGray,
buttonTextColor: .black
)
)
case .dark:
return FlashcardDeckUIConfig(
flashcardConfig: FlashcardUIConfig(
frontColor: .black,
backColor: .black,
font: .body,
frontFontColor: .white,
backFontColor: .white,
progressBarColor: .black
),
statisticsConfig: StatisticsScreenUIConfig(
backgroundColor: LinearGradient(
gradient: Gradient(colors: [.black.opacity(0.8), .gray]),
startPoint: .top,
endPoint: .bottom
),
titleFont: .title,
subtitleFont: .subheadline,
textColor: .white,
buttonBackgroundColor: .black,
buttonTextColor: .white
)
)
case .custom(let config):
return config
}
}

}
33 changes: 33 additions & 0 deletions Sources/CardFlipster/Config/FlashcardDeckUIConfig.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
//
// FlashcardDeckUIConfig.swift
// CardFlipster
//
// Created by Mariana Piz on 17.11.2024.
//

import SwiftUI

/// A configuration object for customizing the appearance of the flashcard deck and statistics screen.
public struct FlashcardDeckUIConfig {

/// The appearance configuration for the flashcards.
public let flashcardConfig: FlashcardUIConfig

/// The appearance configuration for the statistics screen.
public let statisticsConfig: StatisticsScreenUIConfig

/**
Initializes a new configuration object for the flashcard deck.
- Parameters:
- flashcardConfig: The appearance configuration for the flashcards.
- statisticsConfig: The appearance configuration for the statistics screen.
*/
public init(
flashcardConfig: FlashcardUIConfig,
statisticsConfig: StatisticsScreenUIConfig
) {
self.flashcardConfig = flashcardConfig
self.statisticsConfig = statisticsConfig
}

}
Loading

0 comments on commit dcb7d0f

Please sign in to comment.