Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Ğecko
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
clients
Ğecko
Commits
8382cbfc
Commit
8382cbfc
authored
2 years ago
by
poka
Browse files
Options
Downloads
Patches
Plain Diff
add tuto package; safe_home is stateful
parent
9983ea9f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#18293
failed
2 years ago
Stage: format
Stage: build_and_test
Stage: package
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/screens/myWallets/wallets_home.dart
+41
-2
41 additions, 2 deletions
lib/screens/myWallets/wallets_home.dart
pubspec.lock
+21
-0
21 additions, 0 deletions
pubspec.lock
pubspec.yaml
+2
-0
2 additions, 0 deletions
pubspec.yaml
with
64 additions
and
2 deletions
lib/screens/myWallets/wallets_home.dart
+
41
−
2
View file @
8382cbfc
...
...
@@ -24,10 +24,49 @@ import 'package:gecko/widgets/commons/smooth_transition.dart';
import
'package:provider/provider.dart'
;
import
'package:flutter_svg/flutter_svg.dart'
;
import
'package:truncate/truncate.dart'
;
import
'package:tutorial_coach_mark/tutorial_coach_mark.dart'
;
class
WalletsHome
extends
State
less
Widget
{
class
WalletsHome
extends
State
ful
Widget
{
const
WalletsHome
({
Key
?
key
})
:
super
(
key:
key
);
@override
State
<
WalletsHome
>
createState
()
=
>
_WalletsHomeState
();
}
class
_WalletsHomeState
extends
State
<
WalletsHome
>
{
final
safeKey
=
GlobalKey
();
// List<TargetFocus> targets = [];
@override
void
initState
()
{
// targets
// .add(TargetFocus(identify: "Target 1", keyTarget: safeKey, contents: [
// TargetContent(
// align: ContentAlign.right,
// child: Column(
// mainAxisSize: MainAxisSize.min,
// crossAxisAlignment: CrossAxisAlignment.start,
// children: const <Widget>[
// Text(
// "Titulo lorem ipsum",
// style: TextStyle(
// fontWeight: FontWeight.bold,
// color: Colors.white,
// fontSize: 20.0),
// ),
// Padding(
// padding: EdgeInsets.only(top: 10.0),
// child: Text(
// "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin pulvinar tortor eget maximus iaculis.",
// style: TextStyle(color: Colors.white),
// ),
// )
// ],
// ))
// ]));
super
.
initState
();
}
@override
Widget
build
(
BuildContext
context
)
{
final
myWalletProvider
=
Provider
.
of
<
MyWalletsProvider
>(
context
);
...
...
@@ -252,7 +291,7 @@ class WalletsHome extends StatelessWidget {
// return Offset(d.feedbackOffset.dx - 30, d.feedbackOffset.dy - 0);
// }
showTutorial
();
//
showTutorial();
// Future.delayed(const Duration(seconds: 1), showTutorial);
return
CustomScrollView
(
slivers:
<
Widget
>[
...
...
This diff is collapsed.
Click to expand it.
pubspec.lock
+
21
−
0
View file @
8382cbfc
...
...
@@ -1097,6 +1097,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.0"
riverpod:
dependency: "direct main"
description:
name: riverpod
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.1"
rxdart:
dependency: transitive
description:
...
...
@@ -1235,6 +1242,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.10.0"
state_notifier:
dependency: transitive
description:
name: state_notifier
url: "https://pub.dartlang.org"
source: hosted
version: "0.7.2+1"
stream_channel:
dependency: transitive
description:
...
...
@@ -1291,6 +1305,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "3.0.1"
tutorial_coach_mark:
dependency: "direct main"
description:
name: tutorial_coach_mark
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.4"
typed_data:
dependency: transitive
description:
...
...
This diff is collapsed.
Click to expand it.
pubspec.yaml
+
2
−
0
View file @
8382cbfc
...
...
@@ -63,6 +63,8 @@ dependencies:
fast_base58
:
^0.2.1
graphql
:
^5.1.1
hive_generator
:
^2.0.0
riverpod
:
^2.1.1
tutorial_coach_mark
:
^1.2.4
dev_dependencies
:
# flutter_launcher_icons: ^0.9.2
...
...
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