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
| <html> | |
| <body> | |
| <h1>Cookie issue reproductible example</h1> | |
| <p>Open the console to see the logs</p> | |
| <button onclick="createCookieAndSendMessage()"> | |
| Create cookie | |
| </button> | |
| <script> | |
| function createCookieAndSendMessage() { |
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 'dart:math'; | |
| import 'package:flutter/material.dart'; | |
| class Home extends StatefulWidget { | |
| const Home({Key? key}) : super(key: key); | |
| @override | |
| _HomeState createState() => _HomeState(); | |
| } |
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 'dart:math'; | |
| import 'package:flutter/material.dart'; | |
| class Home extends StatefulWidget { | |
| const Home({Key? key}) : super(key: key); | |
| @override | |
| _HomeState createState() => _HomeState(); | |
| } |
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 'dart:math'; | |
| import 'package:flutter/material.dart'; | |
| class Home extends StatefulWidget { | |
| const Home({Key? key}) : super(key: key); | |
| @override | |
| _HomeState createState() => _HomeState(); | |
| } |