Advertisement
Guest User

Untitled

a guest
Jan 11th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.44 KB | None | 0 0
  1. import 'package:festigra2019/utils/uicolors.dart';
  2. import 'package:flutter/material.dart';
  3.  
  4. class FestivalScreen extends StatelessWidget{
  5.  
  6.   final String title;
  7.  
  8.   FestivalScreen(this.title);
  9.  
  10.   @override
  11.   Widget build(BuildContext context) {
  12.     return new Scaffold(
  13.       appBar: new AppBar(title: new Text(title), backgroundColor: UIColors.primarycolor,),
  14.       body: new Center(
  15.         child: new Text(title),
  16.       ),
  17.     );
  18.   }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement