-
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.
- Loading branch information
Showing
196 changed files
with
14,405 additions
and
652 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 0.9.0 | ||
|
||
* Beta release | ||
|
||
## 0.0.1 | ||
|
||
* initial release |
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 |
---|---|---|
@@ -1 +1,66 @@ | ||
# Habib App | ||
# Habib App | ||
|
||
## Contributors ❤️ | ||
|
||
We wanna thank everybody that has been contributing to this project! | ||
|
||
<!DOCTYPE html> | ||
<html lang="de"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<style> | ||
.grid-container { | ||
display: grid; | ||
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); | ||
gap: 20px; | ||
} | ||
.grid-item { | ||
text-align: center; | ||
} | ||
.profile-img { | ||
width: 100px; | ||
height: 100px; | ||
object-fit: cover; | ||
border-radius: 50%; | ||
border: 2px solid #000; /* optional: füge einen Rahmen hinzu */ | ||
display: block; | ||
margin-left: 0; /* Links ausrichten */ | ||
} | ||
.profile-text { | ||
margin-top: 10px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
|
||
<div class="grid-container"> | ||
<div class="grid-item"> | ||
<img src="https://avatars.githubusercontent.com/u/159424615?v=4" alt="Profilbild 1" class="profile-img"> | ||
<div class="profile-text">Name 1</div> | ||
</div> | ||
<div class="grid-item"> | ||
<img src="https://avatars.githubusercontent.com/u/159424615?v=4" alt="Profilbild 2" class="profile-img"> | ||
<div class="profile-text">Name 2</div> | ||
</div> | ||
<div class="grid-item"> | ||
<img src="https://avatars.githubusercontent.com/u/159424615?v=4" alt="Profilbild 3" class="profile-img"> | ||
<div class="profile-text">Name 3</div> | ||
</div> | ||
<!-- Füge weitere Profile nach Bedarf hinzu --> | ||
</div> | ||
|
||
</body> | ||
</html> | ||
|
||
|
||
|
||
<figure> | ||
<img | ||
src="https://avatars.githubusercontent.com/u/159424615?v=4" | ||
alt="Pascal Stellmacher" | ||
height="auto" | ||
width="50" | ||
style="border-radius:50%"> | ||
<figcaption>Pascal Stellmacher</figcaption> | ||
</figure> |
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,10 @@ | ||
class ErrorDetails { | ||
|
||
final Object error; | ||
final StackTrace stackTrace; | ||
|
||
ErrorDetails({ | ||
required this.error, | ||
StackTrace? stackTrace | ||
}) : stackTrace = stackTrace ?? StackTrace.current; | ||
} |
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
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,47 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
import 'package:habib_app/core/common/widgets/hb_gap.dart'; | ||
import 'package:habib_app/core/res/theme/colors/hb_colors.dart'; | ||
import 'package:habib_app/core/res/theme/typography/hb_typography.dart'; | ||
|
||
class HBCheckbox extends StatelessWidget { | ||
|
||
final void Function(bool?)? onChanged; | ||
final bool isSelected; | ||
final String text; | ||
|
||
const HBCheckbox({ | ||
super.key, | ||
this.onChanged, | ||
this.isSelected = false, | ||
required this.text | ||
}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Row( | ||
children: [ | ||
Checkbox( | ||
value: isSelected, | ||
onChanged: onChanged, | ||
checkColor: HBColors.gray900, | ||
fillColor: const WidgetStatePropertyAll(HBColors.gray300), | ||
side: BorderSide.none, | ||
), | ||
const HBGap.lg(), | ||
Flexible( | ||
child: Text( | ||
text, | ||
maxLines: 1, | ||
overflow: TextOverflow.ellipsis, | ||
style: HBTypography.base.copyWith( | ||
color: HBColors.gray900, | ||
fontWeight: FontWeight.w400, | ||
fontSize: 14.0 | ||
) | ||
) | ||
) | ||
] | ||
); | ||
} | ||
} |
Oops, something went wrong.