Skip to content

Instantly share code, notes, and snippets.

@braj065
braj065 / main.dart
Created September 11, 2021 12:18
Beamer loses uri path on going back from one beamlocation to previous
import 'package:beamer/beamer.dart';
import 'package:flutter/material.dart';
const List<Map<String, dynamic>> books = [
{
'id': '1',
'title': 'Stranger in a Strange Land',
'author': 'Robert A. Heinlein',
'genres': ['Science fiction'],
},
@braj065
braj065 / main.dart
Created July 12, 2021 05:37
BothAxis scrolls
import 'package:flutter/material.dart';
import 'package:flutter/gestures.dart';
import 'dart:math' as math;
void main() => runApp(const BothAxisScrollbar());
class BothAxisScrollbar extends StatelessWidget {
const BothAxisScrollbar({Key? key}) : super(key: key);
@override