App-Syndicator

 view release on metacpan or  search on metacpan

lib/App/Syndicator/UI.pm  view on Meta::CPAN

            .' - '.$msg->title ;

        $self->header_bar->text($title);
        $self->header_bar->focus;

        $self->_viewer_text($msg->body."\n\n".$msg->link);
    }
    
    method _viewer_text (Str $text){
        $self->viewer->text($text);
        $self->viewer->cursor_to_home;
        $self->curses->layout;
    }

    method _status_text (Str $text?) {
        $text =~ s/\n//g;

        $self->status_bar->text(
            "App::Syndicator | $text"
        );
        



( run in 0.388 second using v1.01-cache-2.11-cpan-fd5d4e115d8 )