Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
1fe3335
Merge pull request #5 from codewithdripzy/feature/app
codewithdripzy Jun 17, 2026
530cb67
Merge pull request #6 from codewithdripzy/feature/app
codewithdripzy Jun 17, 2026
2be2cd5
Merge pull request #7 from codewithdripzy/feature/app
codewithdripzy Jun 17, 2026
a9cdb34
Merge pull request #8 from codewithdripzy/feature/app
codewithdripzy Jun 18, 2026
9a0f20b
Merge pull request #9 from codewithdripzy/feature/app
codewithdripzy Jun 18, 2026
01bf081
Merge pull request #10 from codewithdripzy/feature/app
codewithdripzy Jun 18, 2026
57c6598
Merge pull request #11 from codewithdripzy/feature/app
codewithdripzy Jun 18, 2026
6443b01
Merge pull request #12 from codewithdripzy/feature/app
codewithdripzy Jun 18, 2026
07d9186
Merge pull request #13 from codewithdripzy/feature/app
codewithdripzy Jun 18, 2026
0e35693
Merge pull request #14 from codewithdripzy/feature/app
codewithdripzy Jun 18, 2026
80f80c0
Merge pull request #15 from codewithdripzy/feature/app
codewithdripzy Jun 18, 2026
2fad2cd
Merge pull request #16 from codewithdripzy/feature/app
codewithdripzy Jun 18, 2026
658a042
Merge pull request #17 from codewithdripzy/feature/app
codewithdripzy Jun 18, 2026
204a6c0
Merge pull request #18 from codewithdripzy/feature/app
codewithdripzy Jun 18, 2026
c08d5ca
feat: add shared API response package and hide sensitive user fields …
codewithdripzy Jun 18, 2026
d66c12a
refactor: move transaction response interfaces to legacy_responses an…
codewithdripzy Jun 18, 2026
8844579
refactor: migrate shared response interfaces to the transaction servi…
codewithdripzy Jun 18, 2026
7392a0c
chore: remove unused shared module dependency from account service
codewithdripzy Jun 18, 2026
62f3a6c
refactor: move /me route to top-level api group in routes configuration
codewithdripzy Jun 18, 2026
fcea015
refactor: remove the /me endpoint from account service routes
codewithdripzy Jun 18, 2026
21a921d
feat: add request logging to main middleware and controller endpoints
codewithdripzy Jun 18, 2026
73ebfa4
fix: cast db context value to *gorm.DB in Me controller to prevent ty…
codewithdripzy Jun 18, 2026
3acf722
refactor: remove redundant type assertion when accessing gorm DB inst…
codewithdripzy Jun 18, 2026
525ff7a
refactor: move /me endpoint to /account/me and update gateway routing…
codewithdripzy Jun 18, 2026
5862e96
fix: cast user to models.User struct instead of pointer in account co…
codewithdripzy Jun 18, 2026
b10afb8
refactor: remove unnecessary Accounts preload from user retrieval query
codewithdripzy Jun 18, 2026
a0f88ac
feat: implement wallet service integration with gRPC definitions and …
codewithdripzy Jun 18, 2026
e4f72a1
feat: initialize WalletService and regenerate protocol buffer definit…
codewithdripzy Jun 18, 2026
ff6c846
feat: implement comprehensive user profile models and fix type assert…
codewithdripzy Jun 18, 2026
5789034
feat: implement total balance endpoint and update auth data handling …
codewithdripzy Jun 18, 2026
b350b53
feat: add shimmer loading states to wallet screens, update account mo…
codewithdripzy Jun 18, 2026
82b8081
refactor: refactor wallet service main, cleanup unused files, and imp…
codewithdripzy Jun 18, 2026
93dffca
feat: migrate bank list retrieval to local JSON and update bank model…
codewithdripzy Jun 18, 2026
e8faa78
refactor: rename verifyAccount to lookupAccount in wallet provider an…
codewithdripzy Jun 18, 2026
d97e7ca
fix: add text truncation and spacing to instant payment summary value…
codewithdripzy Jun 18, 2026
657dbf3
feat: add ComingSoonScreen and implement feature flagging for Cards a…
codewithdripzy Jun 18, 2026
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
26 changes: 26 additions & 0 deletions app/lib/core/widgets/coming_soon_screen.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import 'package:app/core/theme/pg_colors.dart';
import 'package:app/core/widgets/pg_texts.dart';
import 'package:flutter/material.dart';

class ComingSoonScreen extends StatelessWidget {
final String title;
const ComingSoonScreen({super.key, required this.title});

@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
const Icon(Icons.construction, size: 64, color: PgColors.primary),
const SizedBox(height: 16),
PgTexts.text700(context, text: "$title Coming Soon", fontSize: 24),
const SizedBox(height: 8),
PgTexts.text400(context, text: "We're working on it!", color: Colors.grey),
],
),
),
);
}
}
Loading
Loading