Skip to content

Latest commit

 

History

History

libadwaita_core

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

A libadwaita package for providing AdwControls and AdwActions for AdwHeaderBar

Usage

First import this package at the top of your dart file

import 'package:libadwaita_core/libadwaita_core.dart';

Then simply pass it to the actions and controls parameter of AdwHeaderBar

AdwHeaderBar(
    actions: AdwActions(
        onClose: ...,
        ...
    ),
    controls: AdwControls(
        closeBtn: (onClose) => ...,
        ...
    ),
    ...
)

Additional information

This package is a part of libadwaita package.