• This project
    • Loading...
  • Sign in

flutter_package / auto_track_plugin

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • auto_track_plugin
  • example
  • lib
  • home.dart
  • add: first commit · f8f6ee00
    f8f6ee00 Browse Files
    Dubhe authored 2024-02-24 19:57:39 +0800
home.dart 497 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
import 'package:auto_track_example/page_a.dart';
import 'package:flutter/material.dart';

class Home extends StatelessWidget {
  const Home({super.key});

  @override
  Widget build(BuildContext context) {
    return ListView(
      children: [
        ListTile(
          title: const Text('page a'),
          onTap: () {
            Navigator.push(context, MaterialPageRoute(builder: (context) {
              return const PageA();
            }));
          },
        )
      ],
    );
  }
}