Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zy/5 dashboard migrate indi app #234

Merged
merged 43 commits into from
Mar 11, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
8b9528d
add image avatar
zheyxu Mar 3, 2025
8087f2b
add next appointment
zheyxu Mar 3, 2025
f689fca
add avatar image
zheyxu Mar 3, 2025
02e8f14
add next appointment
zheyxu Mar 3, 2025
d020d95
add personal details
zheyxu Mar 4, 2025
5f24e41
add decoration
zheyxu Mar 4, 2025
7fc851d
add number appointments
zheyxu Mar 4, 2025
2e3a0eb
add address link widget
zheyxu Mar 4, 2025
0f290d0
fix warnings in address link
zheyxu Mar 4, 2025
495b5bb
add touch finger oval widget
zheyxu Mar 4, 2025
3bd3134
add audip tooltip
zheyxu Mar 4, 2025
5e90487
add call icon
zheyxu Mar 4, 2025
d891202
reposition text
zheyxu Mar 4, 2025
4b14ea4
fix some warning
zheyxu Mar 4, 2025
f1fb4e6
add desktop design and simplify code
zheyxu Mar 5, 2025
fe9d19e
fix layout
zheyxu Mar 5, 2025
e1a0412
center mobile layout
zheyxu Mar 5, 2025
2adf4cf
Merge remote-tracking branch 'origin/dev' into zy/5_dashboard_migrate…
zheyxu Mar 6, 2025
65c1b8f
add ignore_for_file: use_build_context_synchronously
zheyxu Mar 6, 2025
10e227b
fix unnecessary nullable parameters
zheyxu Mar 6, 2025
d0ec3c9
need to test in linux
zheyxu Mar 6, 2025
8879746
dart fix
zheyxu Mar 6, 2025
a662186
fix warning
zheyxu Mar 6, 2025
206b736
make updates
zheyxu Mar 6, 2025
bba408a
fix linux build
zheyxu Mar 6, 2025
eb48e2b
update Install OS Dependencies
zheyxu Mar 6, 2025
4836e1c
update installers
zheyxu Mar 6, 2025
fabd2d4
update installers
zheyxu Mar 6, 2025
fc964ae
Bump integration test Linux version.
gjwgit Mar 6, 2025
f65a690
Add gstreamer to ci workflow not installer.
gjwgit Mar 6, 2025
49fc4e9
update mp3 audio
zheyxu Mar 6, 2025
6d8aed4
Merge remote-tracking branch 'origin/dev' into zy/5_dashboard_migrate…
zheyxu Mar 7, 2025
ffe379e
Use MarkdownTooltip rather than Tooltip for Functions.
gjwgit Mar 9, 2025
aafd790
Rename dummy to sample.
gjwgit Mar 9, 2025
4126c0b
Merge remote-tracking branch 'origin/dev' into zy/5_dashboard_migrate…
zheyxu Mar 11, 2025
51115c9
Merge remote-tracking branch 'origin/dev' into zy/5_dashboard_migrate…
zheyxu Mar 11, 2025
f3ec697
refactory constants dart file
zheyxu Mar 11, 2025
b5c7388
simplify code
zheyxu Mar 11, 2025
529900e
fix variables
zheyxu Mar 11, 2025
3ec481c
resolve avatar name issue
zheyxu Mar 11, 2025
0458bf0
update manage_plan
zheyxu Mar 11, 2025
d72e7b8
update number_appointment
zheyxu Mar 11, 2025
8a51abe
update personal_details
zheyxu Mar 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add decoration
  • Loading branch information
zheyxu committed Mar 4, 2025
commit 5f24e41b2ba79e11cc8a041af586095e333ffd53
12 changes: 11 additions & 1 deletion lib/widgets/avatar_name.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,17 @@ class _AvatarNameState extends State<AvatarName> {
return Container(
width: 400,
padding: const EdgeInsets.all(8.0),
color: titleBackgroundColor,
decoration: BoxDecoration(
color: titleBackgroundColor,
boxShadow: [
BoxShadow(
color: Colors.grey.withValues(alpha: 0.8),
spreadRadius: 3,
blurRadius: 4,
offset: const Offset(0, 1),
),
],
),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Expand Down
12 changes: 11 additions & 1 deletion lib/widgets/manage_plan.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,17 @@ class _ManagePlanState extends State<ManagePlan> {
return Container(
width: 400,
padding: const EdgeInsets.all(16.0),
color: titleBackgroundColor,
decoration: BoxDecoration(
color: titleBackgroundColor,
boxShadow: [
BoxShadow(
color: Colors.grey.withValues(alpha: 0.8),
spreadRadius: 3,
blurRadius: 4,
offset: const Offset(0, 1),
),
],
),
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Expand Down
12 changes: 11 additions & 1 deletion lib/widgets/next_appointment.dart
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,17 @@ class _NextAppointmentState extends State<NextAppointment> {
return Container(
width: 400,
padding: const EdgeInsets.all(16.0),
color: titleBackgroundColor,
decoration: BoxDecoration(
color: titleBackgroundColor,
boxShadow: [
BoxShadow(
color: Colors.grey.withValues(alpha: 0.8),
spreadRadius: 3,
blurRadius: 4,
offset: const Offset(0, 1),
),
],
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Expand Down
12 changes: 11 additions & 1 deletion lib/widgets/personal_details.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,17 @@ class _PersonalDetailsState extends State<PersonalDetails> {
return Container(
width: 400,
padding: const EdgeInsets.all(16.0),
color: titleBackgroundColor,
decoration: BoxDecoration(
color: titleBackgroundColor,
boxShadow: [
BoxShadow(
color: Colors.grey.withValues(alpha: 0.8),
spreadRadius: 3,
blurRadius: 4,
offset: const Offset(0, 1),
),
],
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Expand Down