Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
medapp_eksad
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
qorri_di
medapp_eksad
Commits
b9a3d943
Commit
b9a3d943
authored
Aug 30, 2022
by
r.manan@eksad.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
animasi
parent
4080fb75
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
112 additions
and
0 deletions
+112
-0
animasi_kanan_kiri.dart
lib/animation/animasi_kanan_kiri.dart
+27
-0
animasi_kiri_kanan.dart
lib/animation/animasi_kiri_kanan.dart
+25
-0
kanan_kiri_small.dart
lib/animation/kanan_kiri_small.dart
+27
-0
kiri_kanan_small.dart
lib/animation/kiri_kanan_small.dart
+25
-0
GeneratedPluginRegistrant.swift
macos/Flutter/GeneratedPluginRegistrant.swift
+4
-0
generated_plugin_registrant.cc
windows/flutter/generated_plugin_registrant.cc
+3
-0
generated_plugins.cmake
windows/flutter/generated_plugins.cmake
+1
-0
No files found.
lib/animation/animasi_kanan_kiri.dart
0 → 100644
View file @
b9a3d943
import
'package:flutter/material.dart'
;
import
'package:google_fonts/google_fonts.dart'
;
import
'package:show_up_animation/show_up_animation.dart'
;
class
Animasi_Kanan_Kiri
extends
StatelessWidget
{
const
Animasi_Kanan_Kiri
({
Key
?
key
,
required
this
.
judul
})
:
super
(
key:
key
);
final
String
judul
;
@override
Widget
build
(
BuildContext
context
)
{
return
ShowUpAnimation
(
delayStart:
const
Duration
(
seconds:
1
),
curve:
Curves
.
decelerate
,
direction:
Direction
.
horizontal
,
child:
Text
(
judul
,
style:
GoogleFonts
.
poppins
(
fontSize:
15
,
fontWeight:
FontWeight
.
w500
,
letterSpacing:
1.3
,
height:
1.4
),
textAlign:
TextAlign
.
center
,
),
);
}
}
lib/animation/animasi_kiri_kanan.dart
0 → 100644
View file @
b9a3d943
import
'package:flutter/material.dart'
;
import
'package:google_fonts/google_fonts.dart'
;
import
'package:show_up_animation/show_up_animation.dart'
;
class
Animasi_Kiri_Kanan
extends
StatelessWidget
{
const
Animasi_Kiri_Kanan
({
Key
?
key
,
required
this
.
screenSize
,
required
this
.
widget
,
})
:
super
(
key:
key
);
final
Size
screenSize
;
final
Widget
widget
;
@override
Widget
build
(
BuildContext
context
)
{
return
ShowUpAnimation
(
delayStart:
const
Duration
(
seconds:
1
),
curve:
Curves
.
decelerate
,
direction:
Direction
.
horizontal
,
offset:
-
0.3
,
child:
widget
);
}
}
lib/animation/kanan_kiri_small.dart
0 → 100644
View file @
b9a3d943
import
'package:flutter/material.dart'
;
import
'package:google_fonts/google_fonts.dart'
;
import
'package:show_up_animation/show_up_animation.dart'
;
class
Animasi_Kanan_Kiri_Small
extends
StatelessWidget
{
const
Animasi_Kanan_Kiri_Small
({
Key
?
key
,
required
this
.
judul
})
:
super
(
key:
key
);
final
String
judul
;
@override
Widget
build
(
BuildContext
context
)
{
return
ShowUpAnimation
(
delayStart:
const
Duration
(
seconds:
1
),
curve:
Curves
.
decelerate
,
direction:
Direction
.
horizontal
,
child:
Text
(
judul
,
style:
GoogleFonts
.
poppins
(
fontSize:
13
,
fontWeight:
FontWeight
.
w500
,
letterSpacing:
1.3
,
height:
1.4
),
textAlign:
TextAlign
.
justify
,
),
);
}
}
lib/animation/kiri_kanan_small.dart
0 → 100644
View file @
b9a3d943
import
'package:flutter/material.dart'
;
import
'package:google_fonts/google_fonts.dart'
;
import
'package:show_up_animation/show_up_animation.dart'
;
class
Animasi_Kiri_Kanan_Small
extends
StatelessWidget
{
const
Animasi_Kiri_Kanan_Small
({
Key
?
key
,
required
this
.
screenSize
,
required
this
.
widget
,
})
:
super
(
key:
key
);
final
Size
screenSize
;
final
Widget
widget
;
@override
Widget
build
(
BuildContext
context
)
{
return
ShowUpAnimation
(
delayStart:
const
Duration
(
seconds:
1
),
curve:
Curves
.
decelerate
,
direction:
Direction
.
horizontal
,
offset:
-
0.3
,
child:
widget
);
}
}
macos/Flutter/GeneratedPluginRegistrant.swift
View file @
b9a3d943
...
...
@@ -5,6 +5,10 @@
import
FlutterMacOS
import
Foundation
import
path_provider_macos
import
url_launcher_macos
func
RegisterGeneratedPlugins
(
registry
:
FlutterPluginRegistry
)
{
PathProviderPlugin
.
register
(
with
:
registry
.
registrar
(
forPlugin
:
"PathProviderPlugin"
))
UrlLauncherPlugin
.
register
(
with
:
registry
.
registrar
(
forPlugin
:
"UrlLauncherPlugin"
))
}
windows/flutter/generated_plugin_registrant.cc
View file @
b9a3d943
...
...
@@ -6,6 +6,9 @@
#include "generated_plugin_registrant.h"
#include <url_launcher_windows/url_launcher_windows.h>
void
RegisterPlugins
(
flutter
::
PluginRegistry
*
registry
)
{
UrlLauncherWindowsRegisterWithRegistrar
(
registry
->
GetRegistrarForPlugin
(
"UrlLauncherWindows"
));
}
windows/flutter/generated_plugins.cmake
View file @
b9a3d943
...
...
@@ -3,6 +3,7 @@
#
list
(
APPEND FLUTTER_PLUGIN_LIST
url_launcher_windows
)
list
(
APPEND FLUTTER_FFI_PLUGIN_LIST
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment