Skip to content

Commit b8c6481

Browse files
Merge pull request #131 from ahmet-cetinkaya/feat/improve-date-picker-elements
feat: improve date picker UI elements and utilities
2 parents e3cbfa7 + ef54678 commit b8c6481

File tree

111 files changed

+10041
-10196
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+10041
-10196
lines changed

.github/actions/setup-repository/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
1515
# Initialize the acore submodule
1616
if git submodule update --init --recursive src/lib/corePackages/acore; then
17-
echo "✅ Acore submodule initialized successfully"
17+
echo "✅ ACore Flutter submodule initialized successfully"
1818
else
1919
echo "❌ Failed to initialize acore submodule"
2020
echo "🔍 Debugging submodule status:"

scripts/_common.sh

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
#!/bin/bash
2+
3+
# Common output functions for Project One-Hour scripts
4+
# This file contains shared output functions used across multiple scripts
5+
6+
# Colors for output
7+
RED='\033[0;31m'
8+
GREEN='\033[0;32m'
9+
YELLOW='\033[1;33m'
10+
BLUE='\033[0;34m'
11+
NC='\033[0m' # No Color
12+
13+
# Print colored output
14+
print_info() {
15+
echo -e "${BLUE}[INFO]${NC} $1"
16+
}
17+
18+
print_success() {
19+
echo -e "${GREEN}[SUCCESS]${NC} $1"
20+
}
21+
22+
print_warning() {
23+
echo -e "${YELLOW}[WARNING]${NC} $1"
24+
}
25+
26+
print_error() {
27+
echo -e "${RED}[ERROR]${NC} $1"
28+
}
29+
30+
# Print header
31+
print_header() {
32+
echo
33+
echo "=================================================================="
34+
echo "$1"
35+
echo "=================================================================="
36+
echo
37+
}
38+
39+
# Print section
40+
print_section() {
41+
echo
42+
echo "--- $1 ---"
43+
echo
44+
}
45+
46+
# End of common output functions

0 commit comments

Comments
 (0)