Created
January 4, 2020 22:12
-
-
Save joramkimata/b4bcbd3669ccfde8e9acdae52026fc21 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:intro_slider/intro_slider.dart'; | |
import 'package:intro_slider/slide_object.dart'; | |
main() => runApp(MyApp()); | |
class MyApp extends StatefulWidget { | |
@override | |
State<StatefulWidget> createState() { | |
return _MyApp(); | |
} | |
} | |
class _MyApp extends State<MyApp> { | |
// 1 Step: Create List of Slides | |
List<Slide> slides = new List(); | |
// 2 Step: Create goToTab function | |
Function goToTab; | |
// 3 Step: Initialize Images | |
@override | |
void initState() { | |
super.initState(); | |
slides.add( | |
new Slide( | |
title: "SCHOOL", | |
styleTitle: TextStyle( | |
color: Color(0xff3da4ab), | |
fontSize: 30.0, | |
fontWeight: FontWeight.bold, | |
fontFamily: 'RobotoMono'), | |
description: | |
"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.", | |
styleDescription: TextStyle( | |
color: Color(0xfffe9c8f), | |
fontSize: 20.0, | |
fontStyle: FontStyle.italic, | |
fontFamily: 'Raleway'), | |
pathImage: "images/photo_school.png", | |
), | |
); | |
slides.add( | |
new Slide( | |
title: "MUSEUM", | |
styleTitle: TextStyle( | |
color: Color(0xff3da4ab), | |
fontSize: 30.0, | |
fontWeight: FontWeight.bold, | |
fontFamily: 'RobotoMono'), | |
description: | |
"Ye indulgence unreserved connection alteration appearance", | |
styleDescription: TextStyle( | |
color: Color(0xfffe9c8f), | |
fontSize: 20.0, | |
fontStyle: FontStyle.italic, | |
fontFamily: 'Raleway'), | |
pathImage: "images/photo_museum.png", | |
), | |
); | |
slides.add( | |
new Slide( | |
title: "COFFEE SHOP", | |
styleTitle: TextStyle( | |
color: Color(0xff3da4ab), | |
fontSize: 30.0, | |
fontWeight: FontWeight.bold, | |
fontFamily: 'RobotoMono'), | |
description: | |
"Much evil soon high in hope do view. Out may few northward believing attempted. Yet timed being songs marry one defer men our. Although finished blessing do of", | |
styleDescription: TextStyle( | |
color: Color(0xfffe9c8f), | |
fontSize: 20.0, | |
fontStyle: FontStyle.italic, | |
fontFamily: 'Raleway'), | |
pathImage: "images/photo_coffee_shop.png", | |
), | |
); | |
} | |
// 4 Step: Create Other functions | |
void onDonePress() { | |
// Back to the first tab | |
this.goToTab(0); | |
} | |
void onTabChangeCompleted(index) { | |
// Index of current tab is focused | |
} | |
Widget renderNextBtn() { | |
return Icon( | |
Icons.navigate_next, | |
color: Color(0xffffcc5c), | |
size: 35.0, | |
); | |
} | |
Widget renderDoneBtn() { | |
return Icon( | |
Icons.done, | |
color: Color(0xffffcc5c), | |
); | |
} | |
Widget renderSkipBtn() { | |
return Icon( | |
Icons.skip_next, | |
color: Color(0xffffcc5c), | |
); | |
} | |
// 5 Step: Custom Tabs | |
List<Widget> renderListCustomTabs() { | |
List<Widget> tabs = new List(); | |
for (int i = 0; i < slides.length; i++) { | |
Slide currentSlide = slides[i]; | |
tabs.add(Container( | |
width: double.infinity, | |
height: double.infinity, | |
child: Container( | |
margin: EdgeInsets.only(bottom: 60.0, top: 60.0), | |
child: ListView( | |
children: <Widget>[ | |
GestureDetector( | |
child: Image.asset( | |
currentSlide.pathImage, | |
width: 200.0, | |
height: 200.0, | |
fit: BoxFit.contain, | |
)), | |
Container( | |
child: Text( | |
currentSlide.title, | |
style: currentSlide.styleTitle, | |
textAlign: TextAlign.center, | |
), | |
margin: EdgeInsets.only(top: 20.0), | |
), | |
Container( | |
child: Text( | |
currentSlide.description, | |
style: currentSlide.styleDescription, | |
textAlign: TextAlign.center, | |
maxLines: 5, | |
overflow: TextOverflow.ellipsis, | |
), | |
margin: EdgeInsets.only(top: 20.0), | |
), | |
], | |
), | |
), | |
)); | |
} | |
return tabs; | |
} | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
home: Scaffold( | |
body: IntroSlider( | |
// List slides | |
slides: this.slides, | |
// Skip button | |
renderSkipBtn: this.renderSkipBtn(), | |
colorSkipBtn: Color(0x33ffcc5c), | |
highlightColorSkipBtn: Color(0xffffcc5c), | |
// Next button | |
renderNextBtn: this.renderNextBtn(), | |
// Done button | |
renderDoneBtn: this.renderDoneBtn(), | |
onDonePress: this.onDonePress, | |
colorDoneBtn: Color(0x33ffcc5c), | |
highlightColorDoneBtn: Color(0xffffcc5c), | |
// Dot indicator | |
colorDot: Color(0xffffcc5c), | |
sizeDot: 13.0, | |
// Tabs | |
listCustomTabs: this.renderListCustomTabs(), | |
backgroundColorAllSlides: Colors.white, | |
refFuncGoToTab: (refFunc) { | |
this.goToTab = refFunc; | |
}, | |
// Show or hide status bar | |
shouldHideStatusBar: true, | |
// On tab change completed | |
onTabChangeCompleted: this.onTabChangeCompleted, | |
), | |
), | |
); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sliderapp | |
description: A new Flutter project. | |
# The following defines the version and build number for your application. | |
# A version number is three numbers separated by dots, like 1.2.43 | |
# followed by an optional build number separated by a +. | |
# Both the version and the builder number may be overridden in flutter | |
# build by specifying --build-name and --build-number, respectively. | |
# In Android, build-name is used as versionName while build-number used as versionCode. | |
# Read more about Android versioning at https://developer.android.com/studio/publish/versioning | |
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. | |
# Read more about iOS versioning at | |
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html | |
version: 1.0.0+1 | |
environment: | |
sdk: ">=2.1.0 <3.0.0" | |
dependencies: | |
flutter: | |
sdk: flutter | |
# The following adds the Cupertino Icons font to your application. | |
# Use with the CupertinoIcons class for iOS style icons. | |
cupertino_icons: ^0.1.2 | |
intro_slider: ^2.2.8 | |
dev_dependencies: | |
flutter_test: | |
sdk: flutter | |
# For information on the generic Dart part of this file, see the | |
# following page: https://dart.dev/tools/pub/pubspec | |
# The following section is specific to Flutter. | |
flutter: | |
# The following line ensures that the Material Icons font is | |
# included with your application, so that you can use the icons in | |
# the material Icons class. | |
uses-material-design: true | |
# To add assets to your application, add an assets section, like this: | |
assets: | |
- images/photo_coffee_shop.png | |
- images/photo_eraser.png | |
- images/photo_museum.png | |
- images/photo_pencil.png | |
- images/photo_ruler.png | |
- images/photo_school.png | |
# - images/a_dot_ham.jpeg | |
# An image asset can refer to one or more resolution-specific "variants", see | |
# https://flutter.dev/assets-and-images/#resolution-aware. | |
# For details regarding adding assets from package dependencies, see | |
# https://flutter.dev/assets-and-images/#from-packages | |
# To add custom fonts to your application, add a fonts section here, | |
# in this "flutter" section. Each entry in this list should have a | |
# "family" key with the font family name, and a "fonts" key with a | |
# list giving the asset and other descriptors for the font. For | |
# example: | |
# fonts: | |
# - family: Schyler | |
# fonts: | |
# - asset: fonts/Schyler-Regular.ttf | |
# - asset: fonts/Schyler-Italic.ttf | |
# style: italic | |
# - family: Trajan Pro | |
# fonts: | |
# - asset: fonts/TrajanPro.ttf | |
# - asset: fonts/TrajanPro_Bold.ttf | |
# weight: 700 | |
# | |
# For details regarding fonts from package dependencies, | |
# see https://flutter.dev/custom-fonts/#from-packages |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment