Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Button control #4265

Merged
merged 4 commits into from
Oct 31, 2024
Merged

Button control #4265

merged 4 commits into from
Oct 31, 2024

Conversation

InesaFitsner
Copy link
Contributor

Description

Button control as alias to ElevatedButton

Fixes #4253

Test Code

import flet as ft

def main(page: ft.Page):
    page.title = "Basic buttons"
    page.add(
        ft.Button(text="Button"),
        ft.Button("Disabled button", disabled=True),
    )

ft.app(target=main)

Type of change

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

Checklist:

  • I signed the CLA.
  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • My changes generate no new warnings
  • New and existing tests pass locally with my changes
  • I have made corresponding changes to the documentation (if applicable)

Screenshots (if applicable):

Additional details

removed constructor from FilledButton, FilledTonalButton
@FeodorFitsner FeodorFitsner merged commit acd3ee0 into main Oct 31, 2024
1 of 2 checks passed
@FeodorFitsner FeodorFitsner deleted the inesa/button-alias branch November 4, 2024 22:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add Button control as an alias to ElevatedButton
3 participants