Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
roi peker
2020-09-01 00:37:13 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a81e0e48908e6ed23242ea1d6c90f346e0168dcc
a81e0e48
1 parent
a086da17
add docs to get_view.dart
very simple doc reference.
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
lib/src/state_manager/simple/get_view.dart
lib/src/state_manager/simple/get_view.dart
View file @
a81e0e4
import
'package:flutter/widgets.dart'
;
import
'package:get/src/instance/get_instance.dart'
;
/// GetView is a great way of quickly access your Controller
/// without having call Get.find<Controller>() yourself.
abstract
class
GetView
<
T
>
extends
StatelessWidget
{
const
GetView
({
Key
key
})
:
super
(
key:
key
);
T
get
controller
=>
GetInstance
().
find
<
T
>();
...
...
Please
register
or
login
to post a comment