Demopackage2

Demopackage2 gives artistic text

Installation

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  demopackage2: ^0.0.1
  1. Import the package and use it in your Flutter App.
import 'package:demopackage2/demopackage2.dart';

class Screen extends StatelessWidget {  
  const Screen({Key? key}) : super(key: key);  
  
  @override  
  Widget build(BuildContext context) {  
    return Scaffold(  
      body: Center(  
        child:  ArtText(style: Style.style1,),
      ),  
    );  
  }  
}

Next Goals

  • [] Addcustomising art text

Libraries

demopackage2