DeveloperBreeze

Ui/Ux Programming Tutorials, Guides & Best Practices

Explore 14+ expertly crafted ui/ux tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

ShadCN Cheatsheet

Cheatsheet April 12, 2025

npx shadcn-ui@latest add button card input

Update Tailwind config:

Getting Started with ApexCharts

Tutorial August 21, 2024

var options = {
    chart: {
        type: 'line',
        height: '100%',
        width: '100%'
    },
    series: [{
        name: 'Sales',
        data: [10, 20, 15, 30, 25, 40, 35]
    }],
    xaxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul']
    },
    responsive: [{
        breakpoint: 480,
        options: {
            chart: {
                width: '100%'
            },
            legend: {
                position: 'bottom'
            }
        }
    }]
}

var chart = new ApexCharts(document.querySelector("#chart"), options);

chart.render();

ApexCharts provides options to export your charts as images or CSV files, making it easy to share your data.

CSS-in-JS Libraries Cheatsheet

Cheatsheet August 21, 2024

  • Limited support for advanced dynamic styling.
  • Smaller community.

Stitches is a CSS-in-JS library focused on fast styling with a utility-first API.

Comprehensive React Libraries Cheatsheet

Cheatsheet August 21, 2024

No preview available for this content.

Responsive Design Frameworks Cheatsheet

Cheatsheet August 21, 2024

Pros:

  • Extensive documentation and community support.
  • Pre-styled components save time.
  • Customizable via SASS variables.