skip to Main Content

Flutter SFDataGrid display the row details in a separate screen instead of Alert Box

import 'package:flutter/material.dart'; import 'package:syncfusion_flutter_datagrid/datagrid.dart'; void main() { runApp(MaterialApp( title: 'Flutter Demo', theme: ThemeData(primarySwatch: Colors.blue), home: const SfDataGridDemo())); } class SfDataGridDemo extends StatefulWidget { const SfDataGridDemo({Key? key}) : super(key: key); @override SfDataGridDemoState createState() => SfDataGridDemoState(); } class SfDataGridDemoState extends State<SfDataGridDemo> {…

VIEW QUESTION
Back To Top
Search