-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add checkbuttons' example * add inputchoice's example * add progress's example * add progress's example * add checkbuttons' example * add checkbuttons' example * fmt * fix flerrands * add temperature * add csv's demo * add csv's demo * add flightbooker * add crud * add InputChoice to FlResters * add flglyph * add flglyph
- Loading branch information
Artem V. Ageev
authored
Jun 8, 2024
1 parent
eb99515
commit bc9dd3d
Showing
42 changed files
with
1,948 additions
and
549 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -3,7 +3,9 @@ | |
resolver = "2" | ||
members = [ | ||
"cairo", | ||
"flerrands", | ||
"csv", | ||
"fltodo", | ||
"flightbooker", | ||
] | ||
|
||
[profile.release] | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
pub struct Model { | ||
value: u8, | ||
} | ||
|
||
impl Model { | ||
pub fn default() -> Self { | ||
Self { value: 0u8 } | ||
} | ||
pub fn inc(&mut self) { | ||
self.value = self.value.saturating_add(1); | ||
} | ||
pub fn dec(&mut self) { | ||
self.value = self.value.saturating_sub(1); | ||
} | ||
pub fn value(&self) -> String { | ||
self.value.to_string() | ||
} | ||
} |
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] | ||
name = "flcsv" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
flemish = { path = "../../" } | ||
csv = "^1.3" | ||
serde = { version = "^1.0", features = ["derive"] } | ||
lazy_static = "^1.4" | ||
image = { version = "^0.25", default-features = false, features = ["jpeg"] } |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Oops, something went wrong.