Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
flutter-toolbox
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
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
android
flutter-toolbox
Commits
868bb1d9
Commit
868bb1d9
authored
7 months ago
by
Benoît Harrault
Browse files
Options
Downloads
Patches
Plain Diff
Add exports for base dependencies
parent
278538c3
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!3
Resolve "Add exports for base dependencies"
Pipeline
#6425
passed
7 months ago
Stage: build-debug
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+4
-0
4 additions, 0 deletions
CHANGELOG.md
lib/flutter_toolbox.dart
+23
-0
23 additions, 0 deletions
lib/flutter_toolbox.dart
pubspec.yaml
+1
-1
1 addition, 1 deletion
pubspec.yaml
with
28 additions
and
1 deletion
CHANGELOG.md
+
4
−
0
View file @
868bb1d9
## 0.1.0
-
Add export for base dependencies
## 0.0.2
-
Fix expose appTheme, darkTheme, lightTheme
...
...
This diff is collapsed.
Click to expand it.
lib/flutter_toolbox.dart
+
23
−
0
View file @
868bb1d9
...
...
@@ -2,6 +2,7 @@ library;
export
'theme/theme.dart'
show
appTheme
,
darkTheme
,
lightTheme
;
export
'utils/color_extensions.dart'
show
ColorExtension
;
export
'utils/tools.dart'
show
printlog
;
export
'widgets/headers.dart'
show
AppHeader
;
...
...
@@ -11,3 +12,25 @@ export 'widgets/show_debug.dart' show ShowDebugWidget;
export
'widgets/show_error.dart'
show
ShowErrorWidget
;
export
'widgets/styled_button.dart'
show
StyledButton
;
export
'widgets/styled_container.dart'
show
StyledContainer
;
// dependencies
export
'package:easy_localization/easy_localization.dart'
show
EasyLocalization
,
BuildContextEasyLocalizationExtension
,
TextTranslateExtension
,
tr
;
export
'package:equatable/equatable.dart'
show
Equatable
;
export
'package:flutter_bloc/flutter_bloc.dart'
show
MultiBlocProvider
,
BlocBuilder
,
BlocConsumer
,
BlocListener
,
BlocProvider
;
export
'package:hive/hive.dart'
show
Hive
;
export
'package:hydrated_bloc/hydrated_bloc.dart'
show
BlocBase
,
HydratedBloc
,
HydratedCubit
,
HydratedStorage
;
export
'package:package_info_plus/package_info_plus.dart'
show
PackageInfo
;
export
'package:path_provider/path_provider.dart'
show
getApplicationDocumentsDirectory
,
getTemporaryDirectory
;
export
'package:unicons/unicons.dart'
show
UniconsLine
,
UniconsSolid
,
UniconsThinline
;
This diff is collapsed.
Click to expand it.
pubspec.yaml
+
1
−
1
View file @
868bb1d9
...
...
@@ -3,7 +3,7 @@ description: "Flutter custom toolbox for org.benoitharrault.* projects."
publish_to
:
"
none"
version
:
0.
0.2
version
:
0.
1.0
homepage
:
https://git.harrault.fr/android/flutter-toolbox
...
...
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