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

Onboarding #39

Merged
merged 30 commits into from
Mar 21, 2024
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
2b2d429
onboarding setup
leo-lox Sep 26, 2023
34a91a0
better tooling for responsive layouts
leo-lox Sep 26, 2023
3f9d5e6
removed intro_slider
leo-lox Sep 26, 2023
0cca2c8
page route logic
leo-lox Sep 26, 2023
9f122c1
login button action
leo-lox Sep 26, 2023
0710526
wip: login page input seed phrase
leo-lox Sep 27, 2023
4e57e10
login ui guidance
leo-lox Sep 28, 2023
0ad4afa
mnemonic into privkey
leo-lox Sep 28, 2023
65aaabe
dev device frame
leo-lox Sep 28, 2023
cb0bbe8
name input
leo-lox Sep 28, 2023
7150a4c
wip: image select
leo-lox Sep 29, 2023
2957221
crop image widget
leo-lox Oct 2, 2023
fd97076
wip: picture callback
leo-lox Oct 4, 2023
d1d7801
Merge branch 'onboarding' of github.com:leo-lox/camelus into onboarding
leo-lox Oct 5, 2023
4c29a4c
dicebear api update
leo-lox Oct 8, 2023
7a54e29
Update cached_network_image version
leo-lox Feb 16, 2024
5e3122a
Add signUpInfo to OnboardingPicture
leo-lox Feb 16, 2024
9816c99
flutter sdk upgrade
leo-lox Feb 16, 2024
0a19826
Update package versions in pubspec.yaml
leo-lox Feb 16, 2024
b8839c7
Update dependencies in pubspec.yaml
leo-lox Feb 16, 2024
924e29d
addEditProfilePage
Feb 27, 2024
9fd88d8
add Texfield and border
Feb 27, 2024
2def481
TextField and borders
Feb 27, 2024
09f1aa4
text color changes
Mar 4, 2024
2457fe9
Text inputs on editprofile
Mar 4, 2024
7abef9f
Header Picture and profile picture on editprofile gui
Mar 7, 2024
8c344b0
updated flutter sdk, gradle adjustments
leo-lox Mar 21, 2024
0ddcc30
dart fix
leo-lox Mar 21, 2024
3f14eb3
update packages
leo-lox Mar 21, 2024
959861e
Merge branch 'dev' into onboarding
leo-lox Mar 21, 2024
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
Text inputs on editprofile
  • Loading branch information
Alex committed Mar 4, 2024
commit 2457fe96adb71536babb55d206afe4d8e586b6ca
159 changes: 148 additions & 11 deletions lib/components/edit_profile.dart
Original file line number Diff line number Diff line change
@@ -37,15 +37,44 @@ class _EditProfileState extends ConsumerState<EditProfile> {
SizedBox(
width: double.infinity,
child: Container(
/// color: Colors.red,
/// color: Colors.red,
child: Text(
"Name",
textAlign: TextAlign.left,
style: TextStyle(
color: const Color.fromARGB(213, 245, 248, 250),
fontSize: MediaQuery.of(context).size.width / 28,
color: const Color.fromARGB(213, 245, 248, 250),
fontSize: MediaQuery.of(context).size.width / 28,
),
),
),
),
],
),
TextField(
decoration: InputDecoration(
hintText: "",
enabledBorder: UnderlineInputBorder(
borderSide: BorderSide(
width: 1, //<-- SEE HERE
color: Colors.grey,
),
),
),

),

Column(
children: <Widget>[
SizedBox(
width: double.infinity,
child: Container(
/// color: Colors.red,
child: Text(
"Bio",
textAlign: TextAlign.left,
style: TextStyle(
color: const Color.fromARGB(213, 245, 248, 250),
fontSize: MediaQuery.of(context).size.width / 28,
),
),
),
),
@@ -62,19 +91,127 @@ class _EditProfileState extends ConsumerState<EditProfile> {
),
),
),

Column(
children: <Widget>[
SizedBox(
width: double.infinity,
child: Container(
/// color: Colors.red,
child: Text(
"Location",
textAlign: TextAlign.left,
style: TextStyle(
color: const Color.fromARGB(213, 245, 248, 250),
fontSize: MediaQuery.of(context).size.width / 28,
),
),
),
),
],
),
TextField(
controller: myController,
decoration: const InputDecoration(
hintText: "Please Type in",
border: OutlineInputBorder(),
decoration: InputDecoration(
hintText: "",
enabledBorder: UnderlineInputBorder(
borderSide: BorderSide(
width: 1, //<-- SEE HERE
color: Colors.grey,
),
),
),
),
const TextField(

Column(
children: <Widget>[
SizedBox(
width: double.infinity,
child: Container(
/// color: Colors.red,
child: Text(
"Website",
textAlign: TextAlign.left,
style: TextStyle(
color: const Color.fromARGB(213, 245, 248, 250),
fontSize: MediaQuery.of(context).size.width / 28,
),
),
),
),
],
),
TextField(
decoration: InputDecoration(
hintText: "",
enabledBorder: UnderlineInputBorder(
borderSide: BorderSide(
width: 1, //<-- SEE HERE
color: Colors.grey,
),
),
),
),

Column(
children: <Widget>[
SizedBox(
width: double.infinity,
child: Container(
/// color: Colors.red,
child: Text(
"Birth date",
textAlign: TextAlign.left,
style: TextStyle(
color: const Color.fromARGB(213, 245, 248, 250),
fontSize: MediaQuery.of(context).size.width / 28,
),
),
),
),
],
),
TextField(
decoration: InputDecoration(
hintText: "",
enabledBorder: UnderlineInputBorder(
borderSide: BorderSide(
width: 1, //<-- SEE HERE
color: Colors.grey,
),
),
),
),

Column(
children: <Widget>[
SizedBox(
width: double.infinity,
child: Container(
/// color: Colors.red,
child: Text(
"Pronouns",
textAlign: TextAlign.left,
style: TextStyle(
color: const Color.fromARGB(213, 245, 248, 250),
fontSize: MediaQuery.of(context).size.width / 28,
),
),
),
),
],
),
TextField(
decoration: InputDecoration(
hintText: "Please Type in",
border: OutlineInputBorder(),
hintText: "",
enabledBorder: UnderlineInputBorder(
borderSide: BorderSide(
width: 1, //<-- SEE HERE
color: Colors.grey,
),
),
),
),

TextButton(onPressed: () => {readText()}, child: const Text("Go"))
],
),