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:flutter/services.dart'; | |
void main() => runApp(const MyApp()); | |
class MyApp extends StatelessWidget { | |
const MyApp({Key? key}) : super(key: key); | |
@override | |
Widget build(BuildContext context) { |
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
// @author OMi Shah | |
// @email [email protected] | |
// @organization CodeCyan | |
// @website www.codecyan.com | |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(CodeCyanApp()); | |
} |
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
// @author OMi Shah | |
// @email [email protected] | |
// @organization CodeCyan | |
// @website www.codecyan.com | |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(const CodeCyanApp()); | |
} |
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
// @author OMi Shah | |
// @email [email protected] | |
// @organization CodeCyan | |
// @website www.codecyan.com | |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp()); | |
} |
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
// @author OMi Shah | |
// @email [email protected] | |
// @organization CodeCyan | |
// @website www.codecyan.com | |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp()); | |
} |
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
// @author OMi Shah | |
// @email [email protected] | |
// @organization CodeCyan | |
// @website www.codecyan.com | |
import 'package:flutter/material.dart'; | |
void main() => runApp(CodeCyanApp()); | |
class CodeCyanApp extends StatelessWidget { |