feat: enhance profile subscription UI with new assets, font adjustments, and SVG support.

This commit is contained in:
pradeepkumar
2026-03-09 07:40:57 +05:30
parent ef1df39520
commit 88c71d6b6e
8 changed files with 485 additions and 303 deletions

View File

@@ -343,11 +343,13 @@ class _AgentEditProfileScreenState
return Scaffold(
backgroundColor: const Color(0xFFF5F7FA),
body: Column(
children: [
// Header with circular back button (SVG) matching Figma
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 12),
body: SafeArea(
bottom: false,
child: Column(
children: [
// Header with circular back button (SVG) matching Figma
Padding(
padding: const EdgeInsets.fromLTRB(16, 4, 16, 8),
child: Row(
children: [
GestureDetector(
@@ -371,8 +373,9 @@ class _AgentEditProfileScreenState
],
),
),
Expanded(child: _buildBody(asyncData)),
],
Expanded(child: _buildBody(asyncData)),
],
),
),
);
}