David PHAM-VAN

Update Printing example folder

  1 +# Pdf Printing Example
  2 +
  3 +Flutter example project
  4 +
  5 +## Getting Started
  6 +
  7 +to generate the project files, run:
  8 +
  9 +```
  10 +flutter create .
  11 +```
  12 +
  13 +to run the example, start a simulator and run:
  14 +```
  15 +flutter run
  16 +```
@@ -55,7 +55,7 @@ class MyApp extends StatelessWidget { @@ -55,7 +55,7 @@ class MyApp extends StatelessWidget {
55 Widget build(BuildContext context) { 55 Widget build(BuildContext context) {
56 return new Scaffold( 56 return new Scaffold(
57 appBar: new AppBar( 57 appBar: new AppBar(
58 - title: const Text('Printing example'), 58 + title: const Text('Pdf Printing Example'),
59 ), 59 ),
60 body: new Center( 60 body: new Center(
61 child: new Column( 61 child: new Column(
  1 +name: printing_example
  2 +description: Pdf Printing Example
  3 +
  4 +version: 1.0.0+1
  5 +
  6 +environment:
  7 + sdk: ">=2.0.0-dev.68.0 <3.0.0"
  8 +
  9 +dependencies:
  10 + flutter:
  11 + sdk: flutter
  12 + printing:
  13 + path: ../
  14 +
  15 + cupertino_icons: ^0.1.2
  16 +
  17 +dev_dependencies:
  18 + flutter_test:
  19 + sdk: flutter
  20 +
  21 +flutter:
  22 + uses-material-design: true