gradient_scaffold

Last updated:

0 purchases

gradient_scaffold Image
gradient_scaffold Images
Add to Cart

Description:

gradient scaffold

gradient_scaffold #
A new Flutter package which creates a gradient scaffold.
Getting Started #
This project is a starting point for a Dart
package,
a library module containing code that can be shared easily across
multiple Flutter or Dart projects.
For help getting started with Flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.
gradient-scaffold-package #
Screenshots #





How to use it in your project? #
Add Dependency #
Add this to your package's pubspec.yaml file:
dependencies:
gradient_scaffold: ^0.0.1
copied to clipboard
Install it #
You can install packages from the command line:
$ flutter pub get
Alternatively, your editor might support flutter pub get. Check the docs for your editor to learn more.
Import it #
Now in your Dart code, you can use:
import 'package:gradient_scaffold/gradient_scaffold.dart';
copied to clipboard
Demo Code #
import 'package:flutter/material.dart';
import 'package:gradient_scaffold/gradient_scaffold.dart';

class ExampleApp extends StatefulWidget {
@override
_ExampleAppState createState() => _ExampleAppState();
}

class _ExampleAppState extends State<ExampleApp> {
@override
Widget build(BuildContext context) {
return GradientScaffold(
gradientBegin: Alignment.topLeft,
gradientEnd: Alignment.bottomRight,
gradientColors: [
Color(0xFF159DFF),
Color(0xFF157DDF)
], //list of colors you want to use
gradientStops: [0.0, 0.5], //list of stops you want to use
appBarTitle: "Example App", //title that appears on your appBar
appBarElevation: 0.0,
appBarActions: <Widget>[
Padding(
padding: const EdgeInsets.only(right: 10.0),
child: Icon(Icons.info),
)
],
body: Container(
width: 100.0,
height: 100.0,
color: Colors.white,
), // this is the scaffold body
);
}
}
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.