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:jaspr/jaspr.dart'; | |
import 'package:signals/signals_core.dart'; | |
import 'watch.dart'; | |
import 'embedded_counter.dart'; | |
class Counter extends StatefulComponent { | |
const Counter({super.key}); | |
@override |
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:async'; | |
import 'package:flutter/foundation.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:uri/uri.dart'; | |
class PathRouteMatch { | |
PathRouteMatch( | |
{required this.parameters, | |
required this.route, |
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:typed_data'; | |
import 'package:drift/drift.dart'; | |
import 'package:google_generative_ai/google_generative_ai.dart'; | |
import 'connection/connection.dart' as impl; | |
part 'database.g.dart'; | |
@DriftDatabase(include: {'sql.drift'}) |