Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AppDeggendorf_Flutter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chaitanya Mangra
AppDeggendorf_Flutter
Commits
86235b73
Commit
86235b73
authored
2 years ago
by
benedikts
Browse files
Options
Downloads
Patches
Plain Diff
finished up
parent
8beb9749
Branches
Deggendorf_App_1.0
Branches containing commit
No related tags found
2 merge requests
!1
Profile benedikt
,
!2
Home page chaitanya
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/bottom_navigation_bar_buttons/profile/profile.dart
+25
-20
25 additions, 20 deletions
lib/bottom_navigation_bar_buttons/profile/profile.dart
with
25 additions
and
20 deletions
lib/bottom_navigation_bar_buttons/profile/profile.dart
+
25
−
20
View file @
86235b73
import
'package:flutter/material.dart'
;
class
Profile
extends
StatefulWidget
{
...
...
@@ -61,7 +62,7 @@ class _ProfilePage extends State<Profile> {
ProfileEntry
(
category:
"Name"
,
description:
"Very long example Name"
),
ProfileEntry
(
category:
"Age"
,
description:
"123"
),
ProfileEntry
(
category:
"Birthday"
,
description:
"
30.02
."
)
ProfileEntry
(
category:
"Birthday"
,
description:
"
12.34
."
)
],
),
)
...
...
@@ -87,27 +88,31 @@ class ProfileEntry extends StatefulWidget {
class
_ProfileEntryState
extends
State
<
ProfileEntry
>
{
@override
Widget
build
(
BuildContext
context
)
{
return
Row
(
children:
[
Expanded
(
flex:
30
,
child:
Container
(
padding:
EdgeInsets
.
fromLTRB
(
0
,
5
,
10
,
5
),
child:
Text
(
widget
.
category
+
":"
,
textAlign:
TextAlign
.
right
,
return
TextButton
(
onPressed:
()
{
},
style:
TextButton
.
styleFrom
(
primary:
Colors
.
brown
),
child:
Row
(
children:
[
Expanded
(
flex:
30
,
child:
Container
(
padding:
EdgeInsets
.
fromLTRB
(
0
,
5
,
10
,
5
),
child:
Text
(
widget
.
category
+
":"
,
textAlign:
TextAlign
.
right
,
),
),
),
),
Expanded
(
flex:
70
,
child
:
C
on
tainer
(
padding:
const
EdgeInsets
.
fromLTRB
(
10
,
5
,
0
,
5
),
child:
Text
(
widget
.
description
),
)
,
)
]
,
Expanded
(
flex:
70
,
child:
Container
(
padding
:
c
on
st
EdgeInsets
.
fromLTRB
(
10
,
5
,
0
,
5
),
child:
Text
(
widget
.
description
),
),
)
],
)
,
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment