build method

  1. @override
Widget build(
  1. BuildContext context,
  2. WidgetRef ref
)
override

Describes the part of the user interface represented by this widget.

The framework calls this method when this widget is inserted into the tree in a given BuildContext and when the dependencies of this widget change (e.g., an InheritedWidget referenced by this widget changes). This method can potentially be called in every frame and should not have any side effects beyond building a widget.

The framework replaces the subtree below this widget with the widget returned by this method, either by updating the existing subtree or by removing the subtree and inflating a new subtree, depending on whether the widget returned by this method can update the root of the existing subtree, as determined by calling Widget.canUpdate.

Typically implementations return a newly created constellation of widgets that are configured with information from this widget's constructor and from the given BuildContext.

The given BuildContext contains information about the location in the tree at which this widget is being built. For example, the context provides the set of inherited widgets for this location in the tree. A given widget might be built with multiple different BuildContext arguments over time if the widget is moved around the tree or if the widget is inserted into the tree in multiple places at once.

The implementation of this method must only depend on:

If a widget's build method is to depend on anything else, use a StatefulWidget instead.

See also:

  • StatelessWidget, which contains the discussion on performance considerations.

Implementation

@override
Widget build(BuildContext context, WidgetRef ref) {
  return MarkdownTooltip(
    message: tooltip ??
        '''

    **Build** Tap here to have the activity undertaken to build the Pages that
      will be displayed here for this Feature. Often the activity is to run
      the required R scripts which may produce output that is captured and
      displayed by Rattle, or the R script will generate plots and graphics
      that will be displayed here.

    ''',
    child: ElevatedButton(
      onPressed: () {
        String path = ref.read(pathProvider);

        if (path.isEmpty) {
          showOk(
            context: context,
            title: 'No Dataset Loaded',
            content: '''

          Please choose a dataset to load from the **Dataset** tab. There is
          not much we can do until we have loaded a dataset.

          ''',
          );
        } else {
          // Perform additional logic, if any.

          onPressed?.call();

          // 20241220 gjw For now let's not navigate anywhere. It is not quite
          // working and the logic needs to be better thought through. If page
          // navigation is required, handle it here.

          // if (pageControllerProvider != null) {
          //   // Access the PageController directly from the StateProvider.

          //   final pageController = ref.read(pageControllerProvider!);

          // Check the current page index before navigating. 20241220 gjw
          // Comment it out for now since we are not using it to find the
          // target page for now.

          // final currentPage = pageController.page?.round() ?? 0;

          // Determine the target page index based on the current
          // page. 20241220 gjw Currently if the current page is larger than
          // the number of pages that will result after the activity, the
          // logic here does not work. The target page is too large. Until
          // we get the navigation logic working better perhaps always go to
          // the second page (the first after the overview page). That
          // should always exist and will avoid some of the odd navigation
          // issues we currently have. It is not clear that we can actually
          // know the number of available pages in here?

          // int targetPage = currentPage == 0 ? 1 : currentPage;

          // int targetPage = 1;

          // // Navigate to the target page.

          // pageController.animateToPage(
          //   targetPage,
          //   duration: const Duration(milliseconds: 300),
          //   curve: Curves.easeInOut,
          // );
          // }
        }
      },
      child: child,
    ),
  );
}