This file contains hidden or 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
| ## Allow anonymous users to connect, default is 'off'. !!NOTE!! | |
| ## Enabling this completely disables authentication of the clients and | |
| ## should only be used for testing/development purposes or in case | |
| ## clients are authenticated by some other means. | |
| ## | |
| ## Default: off | |
| ## | |
| ## Acceptable values: | |
| ## - on or off | |
| allow_anonymous = off |
This file contains hidden or 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'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| title: 'Flutter for Beginners', | |
| home: Scaffold( |
NewerOlder